using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Province; /// /// 行政区划下拉框输出. /// [SuppressSniffer] public class ProvinceSelectorOutput { /// /// 是否为子节点. /// public bool isLeaf { get; set; } /// /// 区域名称. /// public string fullName { get; set; } /// /// 主键. /// public string id { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }