51 lines
1.3 KiB
C#
51 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Infrastructure.Model
|
|
{
|
|
public class TokenModel
|
|
{
|
|
public long UserId { get; set; }
|
|
public long DeptId { get; set; }
|
|
public string UserName { get; set; }
|
|
public string NickName { get; set; }
|
|
/// <summary>
|
|
/// 角色集合
|
|
/// </summary>
|
|
public List<string> RoleIds { get; set; }
|
|
/// <summary>
|
|
/// 角色集合(数据权限过滤使用)
|
|
/// </summary>
|
|
public List<Roles> Roles { get; set; }
|
|
/// <summary>
|
|
/// Jwt过期时间
|
|
/// </summary>
|
|
public DateTime ExpireTime { get; set; }
|
|
/// <summary>
|
|
/// 权限集合
|
|
/// </summary>
|
|
//public List<string> Permissions { get; set; } = new List<string>();
|
|
public TokenModel()
|
|
{
|
|
}
|
|
|
|
public TokenModel(TokenModel info, List<Roles> roles)
|
|
{
|
|
UserId = info.UserId;
|
|
UserName = info.UserName;
|
|
NickName = info.NickName;
|
|
DeptId = info.DeptId;
|
|
Roles = roles;
|
|
RoleIds = roles.Select(f => f.RoleKey).ToList();
|
|
}
|
|
}
|
|
|
|
public class Roles
|
|
{
|
|
public long RoleId { get; set; }
|
|
public string RoleKey { get; set; }
|
|
public int DataScope { get; set; }
|
|
}
|
|
}
|