namespace OASystem.Domain.Entities.System { /// /// 页面权限表 /// [SugarTable("Sys_SystemMenuPermission")] public class Sys_SystemMenuPermission:EntityBase { /// /// 页面名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")] public string Name { get; set; } /// /// 是否启用 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsEnable { get; set; } /// /// 模块Id /// [SugarColumn(IsNullable = true,ColumnDataType ="int")] public int Mid { get; set; } /// /// 页面权限Code /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string SystemMenuCode { get; set; } } }