using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 云平台统一用户表
///
[Table("znyc.sys_wxunifyuser")]
[Serializable]
public class WxUnifyUserEntity : BaseEntity
{
///
/// UnionId
///
public string UnionId { get; set; }
///
/// 用户昵称
///
public string NickName { get; set; }
///
/// 用户头像
///
public string AvatarUrl { get; set; }
///
/// 手机号
///
public string Phone { get; set; }
///
/// 性别
///
public int Gender { get; set; }
///
/// 国家
///
public string Country { get; set; }
///
/// 省份
///
public string Province { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 语种
///
public string Language { get; set; }
}
}