using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Province; /// /// 行政区划列表输出. /// [SuppressSniffer] public class ProvinceListOutput : TreeModel { /// /// 区域编号. /// public string enCode { get; set; } /// /// 状态. /// public int enabledMark { get; set; } /// /// 区域名称. /// public string fullName { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }