21 lines
578 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using Newtonsoft.Json;
using SqlSugar;
2024-07-01 16:04:10 +08:00
namespace DOAN.Model.System
2024-05-16 13:30:30 +08:00
{
/// <summary>
/// 角色菜单
/// </summary>
[SugarTable("sys_role_menu", "角色菜单")]
[Tenant("0")]
public class SysRoleMenu : SysBase
{
[JsonProperty("roleId")]
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
public long Role_id { get; set; }
[JsonProperty("menuId")]
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
public long Menu_id { get; set; }
}
}