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 SysAreaConfig : EntityBase { [SugarColumn(ColumnDescription = "省份")] [Required, MaxLength(300)] public string LocationCode { get; set; } [SugarColumn(ColumnDescription = "批次")] [Required, MaxLength(300)] public string BatchName { get; set; } [SugarColumn(ColumnDescription = "志愿总数量")] public int Count { get; set; } [SugarColumn(ColumnDescription = "单个志愿可选专业")] public int ItemCount { get; set; } }