namespace OASystem.Domain.Entities.System { /// /// 页面与操作关联表 /// [SugarTable("Sys_SystemMenuAndFunction")] public class Sys_SystemMenuAndFunction:EntityBase { /// /// 页面Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SmId { get; set; } /// /// 页面功能Id /// [SugarColumn(IsNullable = true,ColumnDataType ="int")] public int FId { get; set; } } }