You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
652 B
28 lines
652 B
5 days ago
|
namespace Admin.NET.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 系统角色菜单表
|
||
|
/// </summary>
|
||
|
[SugarTable(null, "系统角色菜单表")]
|
||
|
[SystemTable]
|
||
|
public class SysRoleMenu : EntityBaseId
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "角色Id")]
|
||
|
public long RoleId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 菜单Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "菜单Id")]
|
||
|
public long MenuId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 菜单
|
||
|
/// </summary>
|
||
|
[SugarColumn(IsIgnore = true)]
|
||
|
[Navigate(NavigateType.OneToOne, nameof(MenuId))]
|
||
|
public SysMenu SysMenu { get; set; }
|
||
|
}
|