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 SysVolunteerTb : EntityBase { /// /// 用户ID /// [SugarColumn(ColumnDescription = "用户Id")] public long CId { 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)] [MaxLength(int.MaxValue)] public string Detail { get; set; } /// /// 所在省份code /// [SugarColumn(ColumnDescription = "所在省份code", IsNullable = true)] public string LocationCode { get; set; } /// /// 排序 /// public int OrderSort { get; set; } = 0; /// /// 是否推给专家 /// [SugarColumn(ColumnDescription = "是否推给专家", IsNullable = true)] public bool IsPush { get; set; } = false; }