using APT.BaseData.Domain.Entities; using APT.BaseData.Domain.Entities.FM; using System; using System.Collections.Generic; namespace APT.BaseData.Domain.ApiModel { /// /// The model that represents an API displayed on the help page. /// public class RichUserModel { public RichUserModel() { } public T_FM_USER User { get; set; } public List AppMenuList { get; set; } public List RoleList { get; set; } public List LineRoleList { get; set; } public List AppRoleList { get; set; } public string Token { get; set; } public string OrgId { get; set; } /// /// 列表编辑权限 /// public bool ListConfig { get; set; } /// /// 查询编辑权限 /// public bool QueryConfig { get; set; } /// /// 编辑页面编辑权限 /// public bool EditConfig { get; set; } } }