123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
-
- 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; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string WebUrl { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string AndroidUrl { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string IosUrl { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PhoneIsEnable { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string Icon { get; set; }
- }
- }
|