Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.DTOModel/UserRoleMenuDto.cs
陈淳 781fa7ea1b ruoyi对接
登录接口、用户信息接口、用户管理接口等
2022-09-07 18:22:15 +08:00

20 lines
541 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Model.Models;
namespace Yi.Framework.DTOModel
{
public class UserRoleMenuDto
{
public UserEntity User { get; set; }=new ();
public HashSet<RoleEntity> Roles { get; set; } = new();
public HashSet<MenuEntity> Menus { get; set; }=new();
public List<string> RoleCodes { get; set; } =new();
public List<string> PermissionCodes { get; set; } = new();
}
}