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
427 B

5 months ago
using SqlSugar;
7 months ago
5 months ago
namespace Entity.DbModel;
7 months ago
5 months ago
/// <summary>
/// </summary>
[SugarTable("sysRoleMenu")]
public class sysRoleMenu
{
/// <summary>
/// Desc:角色ID
/// Default:
/// Nullable:True
/// </summary>
public int? RoleID { get; set; }
7 months ago
5 months ago
/// <summary>
/// Desc:菜单ID
/// Default:
/// Nullable:True
/// </summary>
public int? MenuID { get; set; }
}