12345678910111213141516171819202122 |
- namespace OASystem.Domain.Entities.System
- {
-
-
-
- [SugarTable("Sys_SystemMenuAndFunction")]
- public class Sys_SystemMenuAndFunction:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int SmId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType ="int")]
- public int FId { get; set; }
- }
- }
|