namespace Admin.NET.Core; /// /// 系统行政地区表 /// [SugarTable(null, "系统行政地区表")] [SystemTable] public class SysRegion : EntityBaseId { /// /// 父Id /// [SugarColumn(ColumnDescription = "父Id")] public long Pid { get; set; } /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 64)] [Required, MaxLength(64)] public virtual string Name { get; set; } /// /// 简称 /// [SugarColumn(ColumnDescription = "简称", Length = 32)] [MaxLength(32)] public string? ShortName { get; set; } /// /// 组合名 /// [SugarColumn(ColumnDescription = "组合名", Length = 64)] [MaxLength(64)] public string? MergerName { get; set; } /// /// 行政代码 /// [SugarColumn(ColumnDescription = "行政代码", Length = 32)] [MaxLength(32)] public string? Code { get; set; } /// /// 邮政编码 /// [SugarColumn(ColumnDescription = "邮政编码", Length = 6)] [MaxLength(6)] public string? ZipCode { get; set; } /// /// 区号 /// [SugarColumn(ColumnDescription = "区号", Length = 6)] [MaxLength(6)] public string? CityCode { get; set; } /// /// 层级 /// [SugarColumn(ColumnDescription = "层级")] public int Level { get; set; } /// /// 拼音 /// [SugarColumn(ColumnDescription = "拼音", Length = 128)] [MaxLength(128)] public string? PinYin { get; set; } /// /// 经度 /// [SugarColumn(ColumnDescription = "经度")] public float Lng { get; set; } /// /// 维度 /// [SugarColumn(ColumnDescription = "维度")] public float Lat { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序")] public int OrderNo { get; set; } = 100; /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 128)] [MaxLength(128)] public string? Remark { get; set; } /// /// 机构子项 /// [SugarColumn(IsIgnore = true)] public List Children { get; set; } }