赖素文
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// ***********************************************************************
// <summary>
// 授权实体,记录用户的模块、角色、组织、用户信息等
// </summary>
// ***********************************************************************
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Entity;
using System.Collections.Generic;
namespace Hh.Mes.Service.SystemAuth
{
/// <summary>
/// 授权实体
/// </summary>
public class AuthStrategyContext
{
public List<SysModuleView> Modules { set; get; }
public List<SysRole> Roles { set; get; }
public List<SysDept> Orgs { set; get; }
public SysUser User { set; get; }
}
}
|