1234567891011121314151617181920212223242526272829303132 |
-
- 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; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType ="int")]
- public int Mid { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
- public string SystemMenuCode { get; set; }
- }
- }
|