using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Models.UserCenterManager { [Tenant("usercenter")] [SugarTable("Acl_ACLConst")] public class AclConst : BaseModel { /// /// Code /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string Code { get; set; } /// /// 父编号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "父编号")] public string PNO { get; set; } /// /// App类型 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false, ColumnDescription = "App类型")] public decimal AppTypeNum { get; set; } /// /// 权限名称 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "权限名称")] public string Name { get; set; } /// /// 排序号 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false, ColumnDescription = "排序号")] public decimal SortNum { get; set; } /// /// 权限字符串 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false, ColumnDescription = "权限字符串")] public string ACLItem { get; set; } } }