using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Role; /// /// 角色列表输出. /// [SuppressSniffer] public class RoleListOutput : TreeModel { /// /// 唯一Id. /// public string onlyId { get; set; } /// /// 组织Id. /// public string organizeId { get; set; } /// /// 组织树. /// public string organizeInfo { get; set; } /// /// 组织树. /// public string organize { get; set; } /// /// 名称. /// public string fullName { get; set; } /// /// 编码. /// public string enCode { get; set; } /// /// 类型. /// public string type { get; set; } /// /// 描述. /// public string description { get; set; } /// /// 有效标记. /// public int? enabledMark { get; set; } /// /// 创建时间. /// public DateTime? creatorTime { get; set; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 图标. /// public string icon { get; set; } = "icon-ym icon-ym-tree-department1"; }