You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Entity/SysRoleMenu.cs

25 lines
411 B
C#

2 years ago
using SqlSugar;
using System.ComponentModel;
namespace Magic.Core.Entity;
/// <summary>
/// 角色菜单表
/// </summary>
[SugarTable("sys_role_menu")]
[Description("角色菜单表")]
public class SysRoleMenu
{
/// <summary>
/// 角色Id
/// </summary>
public long SysRoleId { get; set; }
/// <summary>
/// 菜单Id
/// </summary>
public long SysMenuId { get; set; }
}