43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ARW.Model.System
|
|
{
|
|
/// <summary>
|
|
/// 登录用户信息存储
|
|
/// </summary>
|
|
public class LoginUser
|
|
{
|
|
public long UserId { get; set; }
|
|
public long DeptId { get; set; }
|
|
public string UserName { get; set; }
|
|
/// <summary>
|
|
/// 角色集合
|
|
/// </summary>
|
|
public List<string> RoleIds { get; set; }
|
|
/// <summary>
|
|
/// 角色集合(数据权限过滤使用)
|
|
/// </summary>
|
|
public List<SysRole> Roles { get; set; }
|
|
/// <summary>
|
|
/// 权限集合
|
|
/// </summary>
|
|
public List<string> Permissions { get; set; } = new List<string>();
|
|
public LoginUser()
|
|
{
|
|
}
|
|
|
|
public LoginUser(SysUser user, List<SysRole> roles, List<string> permissions)
|
|
{
|
|
UserId = user.UserId;
|
|
UserName = user.UserName;
|
|
DeptId = user.DeptId;
|
|
Roles = roles;
|
|
RoleIds = roles.Select(f => f.RoleKey).ToList();
|
|
Permissions = permissions;
|
|
}
|
|
}
|
|
}
|