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 SysVolunteerTbSp : EntityBase { /// /// 政策规则 /// public int Sp { get; set;} /// /// /// [SugarColumn(ColumnDescription = "志愿表所在省份", IsNullable = true)] public string LocationCode { get; set; } /// /// 用户ID /// [SugarColumn(ColumnDescription = "用户Id")] public long CId { get; set; } /// /// 专家Id /// [SugarColumn(ColumnDescription = "专家Id")] public long SCId { get; set; } /// /// 志愿表名称 /// [SugarColumn(ColumnDescription = "志愿表名称", IsNullable = true)] public string TableName { get; set; } /// ///批次名称 /// [SugarColumn(ColumnDescription = "批次名称", IsNullable = true)] public string BatchName { get; set; } /// /// 志愿填报类型(智能填报|一键填报) /// [SugarColumn(ColumnDescription = "志愿填报类型", IsNullable = true)] public string Type { get; set; } /// /// 选科科目 /// [SugarColumn(ColumnDescription = "选科科目", IsNullable = true)] public string SubjectClaim { get; set; } /// ///填报志愿选择成绩 /// [SugarColumn(ColumnDescription = "成绩")] public float Score { get; set; } /// /// 志愿表详情 /// [SugarColumn(ColumnDescription = "志愿表详情", Length = int.MaxValue)] public string Detail { get; set; } /// /// 排序 /// public int OrderSort { get; set; } = 0; }