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