18 lines
531 B
C#
18 lines
531 B
C#
namespace ZR.ServiceCore.Model
|
|
{
|
|
/// <summary>
|
|
/// 角色菜单
|
|
/// </summary>
|
|
[SugarTable("sys_role_menu", "角色菜单")]
|
|
[Tenant("0")]
|
|
public class SysRoleMenu
|
|
{
|
|
[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; }
|
|
}
|
|
}
|