using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Organize; /// /// 机构树列表输出 . /// [SuppressSniffer] public class OrganizeSelectorOutput : TreeModel { /// /// 名称. /// public string fullName { get; set; } /// /// 编码. /// public string enCode { get; set; } /// /// 状态. /// public int? enabledMark { get; set; } /// /// 描述. /// public string description { get; set; } /// /// 组织树. /// public string organizeIdTree { get; set; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 分类. /// public string category { get; set; } /// /// 分类. /// public string type { get; set; } /// /// 图标. /// public string icon { get; set; } = "icon-ym icon-ym-tree-department1"; /// /// 组织树名称. /// public string organize { get; set; } /// /// 组织树Id. /// public List organizeIds { get; set; } /// /// 是否可选. /// public bool disabled = false; }