/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace CoreCms.Net.Model.Entities
{
///
/// 用户权限和菜单关系表扩展
///
public partial class SysRoleMenu
{
///
/// 菜单
///
[Display(Name = "菜单")]
[SugarColumn(IsIgnore = true)]
public SysMenu menu { get; set; }
///
/// 权限
///
[Display(Name = "权限")]
[SugarColumn(IsIgnore = true)]
public SysRole role { get; set; }
}
}