using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core; /// /// 用户拓展字段表 /// [SugarTable(null, "用户拓展字段表")] [SysTable] public class SysWeChatUserExtend : EntityBase { /// /// Wx用户Id /// [SugarColumn(ColumnDescription = "Wx用户Id")] public long WxId { get; set; } /// ///学生所在学校 /// [SugarColumn(IsNullable = true)] public string SchoolName { get; set; } /// /// 学生所在班级 /// [SugarColumn(IsNullable = true)] public string ClassName { get; set; } /// ///学生数据是否初始化(省份,选科等) /// public bool? Init { get; set; } = false; /// /// 0(文科,理科)|1(3+3)|2 (3+1+2) /// public int? sp { get; set; } = 1; /// /// 选科文字展示 /// [SugarColumn(IsNullable = true)] public string subjectGroup { get; set; } /// ///分数 /// public double? expectedScore { get; set; } = 0; /// /// 分数位次 /// [SugarColumn(IsNullable = true)] public double? Rank { get; set; } /// /// 是否为VIP /// public bool IsVIP { get; set; } = false; [SugarColumn(IsNullable = true)] public string VipCode { get; set; } /// /// 是否更新分数 /// [SugarColumn(IsNullable = true)] public int IsUpdateScore { get; set; } = 0; /// /// 高考年份 /// [SugarColumn(IsNullable = true)] public int Year { get; set; } /// /// 省份 /// [SugarColumn(IsNullable = true)] public string ProvinceName { get; set; } /// /// 省份Code /// [SugarColumn(IsNullable = true)] public string ProvinceCode { get; set; } /// /// CasdoorId /// [SugarColumn(IsNullable = true)] public string UUID { get; set; } }