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