namespace OASystem.Domain.Entities.System { /// /// 页面操作权限表 /// [SugarTable("Sys_PageFunctionPermission")] public class Sys_PageFunctionPermission:EntityBase { /// /// 功能名称 /// [SugarColumn(IsNullable =true, ColumnDataType = "varchar(30)")] public string FunctionName { get; set; } /// /// 功能权限Code /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string FunctionCode { get; set; } /// /// 是否启用0否1是 /// [SugarColumn(IsNullable = true,ColumnDataType ="int")] public int IsEnable { get; set; } } }