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 BusBatchBase : EntityBase { [SugarColumn(ColumnDescription = "省份Code", Length = 100)] public string ProvinceCode { get; set; } [SugarColumn(ColumnDescription = "省份", Length = 100)] public string ProvinceName { get; set; } [SugarColumn(ColumnDescription = "年份")] public int Year { get; set; } /// /// 批次名称 /// [SugarColumn(ColumnDescription = "批次名称", Length = 100)] public string Batch { get; set; } /// /// 综合(默认不管) /// [SugarColumn(ColumnDescription = "类型", Length = 100)] public string Course { get; set; } /// /// 批次类型(提前/普通) /// [SugarColumn(ColumnDescription = "批次类型", Length = 100)] public string BatchType { get; set; } /// /// 批次分 /// [SugarColumn(ColumnDescription = "批次分")] public int Score { get; set; } /// /// 批次最低分 /// [SugarColumn(ColumnDescription = "批次最低分")] public int MinScore { get; set; } /// /// 批次最高分 /// [SugarColumn(ColumnDescription = "批次最高分")] public int MaxScore { get; set; } /// /// 压力分 /// [SugarColumn(ColumnDescription = "压力分")] public int PressureScore { get; set; } /// /// 压力分区间 /// [SugarColumn(ColumnDescription = "压力分区间")] public string PressureRange { get; set; } } }