using System; using System.Collections.Generic; using Znyc.Admin.Security.Entitys; namespace Znyc.Admin.Security.Dtos { /// /// 包括用户及用户可访问的机构/资源/模块/角色 /// [Serializable] public class UserWithAccessedCtrls { /// /// 用户可以访问到的模块(包括所属角色与自己的所有模块) /// public List Modules { get; set; } /// /// 用户可以访问的资源 /// public List RoleDatas { get; set; } /// /// 用户所属机构 /// public List Organizes { get; set; } /// /// 用户所属角色 /// public List Roles { get; set; } } }