using SqlSugar; namespace ProductionSystem_Model.DbModel.System { /// /// 菜单-角色关联关系表 /// [SugarTable("sys_menu_role")] public class Sys_Menu_Role : BaseModel { /// /// 菜单编码 /// [SugarColumn(ColumnName = "menu_code")] public string MenuCode { get; set; } /// /// 角色编码 /// [SugarColumn(ColumnName = "role_code")] public string RoleCode { get; set; } /// /// 是否拥有所有权限 /// [SugarColumn(ColumnName = "is_all_author")] public bool IsAllAuthor { get; set; } } }