using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Module; /// /// 功能创建输入. /// [SuppressSniffer] public class ModuleCrInput { /// /// 上级菜单. /// public string parentId { get; set; } /// /// 菜单名称. /// public string fullName { get; set; } /// /// 菜单编码. /// public string enCode { get; set; } /// /// 菜单图标. /// public string icon { get; set; } /// /// 菜单类型(1-目录,2-页面). /// public int? type { get; set; } /// /// 链接地址. /// public string urlAddress { get; set; } /// /// 链接方式(_self,_blank). /// public string linkTarget { get; set; } /// /// 菜单分类(Web,App). /// public string category { get; set; } /// /// 状态(1-可用,0-禁用). /// public int? enabledMark { get; set; } /// /// 说明. /// public string description { 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; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 扩展字段. /// public string propertyJson { get; set; } /// /// 系统id. /// public string systemId { get; set; } }