shgx_tz_mom/ZR.Model/System/SysRoleMenu.cs

18 lines
536 B
C#
Raw Permalink Normal View History

2024-06-07 11:04:26 +08:00
namespace ZR.Model.System
2021-08-23 16:57:25 +08:00
{
/// <summary>
/// 角色菜单
/// </summary>
2023-06-07 22:28:06 +08:00
[SugarTable("sys_role_menu", "角色菜单")]
2021-11-27 09:43:04 +08:00
[Tenant("0")]
2023-06-07 22:28:06 +08:00
public class SysRoleMenu : SysBase
2021-08-23 16:57:25 +08:00
{
[JsonProperty("roleId")]
2023-06-07 22:28:06 +08:00
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
2021-08-23 16:57:25 +08:00
public long Role_id { get; set; }
[JsonProperty("menuId")]
2023-06-07 22:28:06 +08:00
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
2021-08-23 16:57:25 +08:00
public long Menu_id { get; set; }
}
}