using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Province; /// /// 行政区划信息输出. /// [SuppressSniffer] public class ProvinceInfoOutput { /// /// 描述. /// public string description { get; set; } /// /// 区域编号. /// public string enCode { get; set; } /// /// 状态. /// public int enabledMark { get; set; } /// /// 区域名称. /// public string fullName { get; set; } /// /// 主键. /// public string id { get; set; } /// /// 区域上级. /// public string parentId { get; set; } /// /// 上级名称. /// public string parentName { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }