using SqlSugar; namespace YBDevice.Entity { /// /// 粉丝数据表 /// [SugarTable("YB_WXFans", TableDescription = "粉丝数据表", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_WXFans { /// /// /// [SugarColumn(IsPrimaryKey = true)] public System.Guid Id { get; set; } /// /// 昵称 /// [SugarColumn(ColumnDescription = "昵称", ColumnDataType = "nvarchar(100)")] public System.String NickName { get; set; } /// /// 头像地址 /// [SugarColumn(ColumnDescription = "头像地址", ColumnDataType = "varchar(200)")] public System.String HeadImgUrl { get; set; } /// /// 性别,1-男,2-女,0-未知 /// [SugarColumn(ColumnDescription = "性别,1-男,2-女,0-未知")] public GenderType Sex { get; set; } /// /// 城市 /// [SugarColumn(ColumnDescription = "城市", ColumnDataType = "nvarchar(100)")] public System.String City { get; set; } /// /// 国家 /// [SugarColumn(ColumnDescription = "国家", ColumnDataType = "nvarchar(100)")] public System.String Country { get; set; } /// /// 省份 /// [SugarColumn(ColumnDescription = "省份", ColumnDataType = "nvarchar(100)")] public System.String Province { get; set; } /// /// 语言 /// [SugarColumn(ColumnDescription = "语言", ColumnDataType = "varchar(50)")] public System.String Language { get; set; } /// /// 来源类型,1-扫码网页授权,2-小程序 /// [SugarColumn(ColumnDescription = "来源类型,1-扫码网页授权,2-小程序")] public System.Int32 FromType { get; set; } /// /// 针对网页授权号的openid /// [SugarColumn(ColumnDescription = "针对网页授权号的openid", ColumnDataType = "varchar(50)")] public System.String OldOpenId { get; set; } /// /// 针对网页授权号的unionid /// [SugarColumn(ColumnDescription = "针对网页授权号的unionid", ColumnDataType = "varchar(50)")] public System.String FansId { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间")] public System.DateTime CreateTime { get; set; } } }