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 BusProvinceInitialization : EntityBase { /// /// 省份Code /// [SugarColumn(ColumnDescription = "省份Code", IsNullable = true)] public string Code { get; set; } [SugarColumn(ColumnDescription = "省份名称简称", IsNullable = true)] public string Shortname { get; set;} /// /// 省份名称 /// [SugarColumn(ColumnDescription = "省份名称", IsNullable = true)] public string Provincename { get; set; } /// /// 政策类型 /// [SugarColumn(ColumnDescription = "政策类型", IsNullable = true)] public int Policy { get; set; } /// /// 省份总分 /// [SugarColumn(ColumnDescription = "省份总分", IsNullable = true)] public int Allscore { get; set; } }