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.
25 lines
416 B
C#
25 lines
416 B
C#
using SqlSugar;
|
|
using System.ComponentModel;
|
|
|
|
namespace Myshipping.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; }
|
|
|
|
}
|