using SqlSugar;
namespace CompressorXN_Model
{
///
/// 菜单-角色关联关系表
///
[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; }
///
/// 数据状态
/// 1—可用,0—不可用
///
[SugarColumn(ColumnName = "isactive")]
public bool IsActive { get; set; } = true;
}
}