// *********************************************************************** // <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; } } }