using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Module; /// /// 功能列表输出. /// [SuppressSniffer] public class ModuleListOutput : TreeModel { /// /// 状态(1-可用,0-禁用). /// public int? enabledMark { get; set; } /// /// 菜单名称. /// public string fullName { get; set; } /// /// 图标. /// public string icon { get; set; } /// /// 链接地址. /// public string urlAddress { get; set; } /// /// 菜单类型. /// public int? type { get; set; } /// /// 是否开启数据权限(1-开启,0-未开启). /// public int? isDataAuthorize { get; set; } /// /// 是否开启列表权限(1-开启,0-未开启). /// public int? isColumnAuthorize { get; set; } /// /// 是否开启按钮权限(1-开启,0-未开启). /// public int? isButtonAuthorize { get; set; } /// /// 是否开启表单权限(1-开启,0-未开启). /// public int? isFormAuthorize { get; set; } /// /// 排序,默认0. /// public long? sortCode { get; set; } /// /// 系统id. /// public string systemId { get; set; } }