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