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.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace GDZZ.Core.Entity;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色菜单表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("sys_role_menu")]
|
|
|
|
|
[Description("角色菜单表")]
|
|
|
|
|
public class SysRoleMenu
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "角色Id")]
|
|
|
|
|
public long SysRoleId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 菜单Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "菜单Id")]
|
|
|
|
|
public long SysMenuId { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|