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.
 
 
 

23 lines
573 B

using SqlSugar;
namespace Wood.Entity.SystemManage
{
/// <summary>
/// 角色授权
/// </summary>
[SugarTable("SysMenuAuthorize", "角色授权")]
public class MenuAuthorizeEntity : EntityTenantBaseExtra
{
/// <summary>
/// 菜单id
/// </summary>
[SugarColumn(ColumnDescription = "菜单id")]
public long MenuId { get; set; } = 0;
/// <summary>
/// 角色id
/// </summary>
[SugarColumn(ColumnDescription = "角色id")]
public long RoleId { get; set; } = 0;
}
}