using YBEE.EQM.Core;
namespace YBEE.EQM.Application
{
///
/// 角色菜单输出参数
///
public class SysRoleMenuOutput
{
[Required]
public int Id { get; set; }
///
/// 角色Id
///
[Required]
public int SysRoleId { get; set; }
///
/// 菜单Id
///
[Required]
public int SysMenuId { get; set; }
///
/// 数据范围类型
///
public DataScopeType DataScopeType { get; set; }
///
/// 角色
///
public SysRoleOutput SysRole { get; set; }
///
/// 菜单
///
public SysMenuOutput SysMenu { get; set; }
}
}