2022-04-30 21:48:18 +08:00
|
|
|
|
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();
|
|
|
|
|
|
|
2022-09-07 18:22:15 +08:00
|
|
|
|
public List<string> RoleCodes { get; set; } =new();
|
|
|
|
|
|
public List<string> PermissionCodes { get; set; } = new();
|
2022-04-30 21:48:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|