You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.7 KiB
107 lines
2.7 KiB
5 months ago
|
// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
|
||
|
//
|
||
|
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
|
||
|
|
||
|
namespace Admin.NET.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 系统行政地区表
|
||
|
/// </summary>
|
||
|
[SugarTable(null, "系统行政地区表")]
|
||
|
[SysTable]
|
||
|
[SugarIndex("index_{table}_N", nameof(Name), OrderByType.Asc)]
|
||
|
[SugarIndex("index_{table}_C", nameof(Code), OrderByType.Asc)]
|
||
|
public class SysRegion : EntityBaseId
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 父Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "父Id")]
|
||
|
public long Pid { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "名称", Length = 128)]
|
||
|
[Required, MaxLength(128)]
|
||
|
public virtual string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 简称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "简称", Length = 32)]
|
||
|
[MaxLength(32)]
|
||
|
public string? ShortName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 组合名
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "组合名", Length = 64)]
|
||
|
[MaxLength(64)]
|
||
|
public string? MergerName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 行政代码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "行政代码", Length = 32)]
|
||
|
[MaxLength(32)]
|
||
|
public string? Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 邮政编码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "邮政编码", Length = 6)]
|
||
|
[MaxLength(6)]
|
||
|
public string? ZipCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 区号
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "区号", Length = 6)]
|
||
|
[MaxLength(6)]
|
||
|
public string? CityCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 层级
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "层级")]
|
||
|
public int Level { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 拼音
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "拼音", Length = 128)]
|
||
|
[MaxLength(128)]
|
||
|
public string? PinYin { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 经度
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "经度")]
|
||
|
public float Lng { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 维度
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "维度")]
|
||
|
public float Lat { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "排序")]
|
||
|
public int OrderNo { get; set; } = 100;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "备注", Length = 128)]
|
||
|
[MaxLength(128)]
|
||
|
public string? Remark { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 机构子项
|
||
|
/// </summary>
|
||
|
[SugarColumn(IsIgnore = true)]
|
||
|
public List<SysRegion> Children { get; set; }
|
||
|
}
|