添加登录用户全部信息查询
This commit is contained in:
17
Yi.Framework.Net6/Yi.Framework.DTOModel/UserRoleMenuDto.cs
Normal file
17
Yi.Framework.Net6/Yi.Framework.DTOModel/UserRoleMenuDto.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user