43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
|
|
using APT.BaseData.Domain.Entities;
|
|||
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.ApiModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The model that represents an API displayed on the help page.
|
|||
|
|
/// </summary>
|
|||
|
|
public class RichUserModel
|
|||
|
|
{
|
|||
|
|
public RichUserModel()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public T_FM_USER User { get; set; }
|
|||
|
|
public List<T_PF_APPMENU> AppMenuList { get; set; }
|
|||
|
|
|
|||
|
|
public List<T_FM_ROLE> RoleList { get; set; }
|
|||
|
|
|
|||
|
|
public List<T_FM_ROLE> LineRoleList { get; set; }
|
|||
|
|
public List<T_FM_ROLE> AppRoleList { get; set; }
|
|||
|
|
|
|||
|
|
public string Token { get; set; }
|
|||
|
|
public string OrgId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20>б<EFBFBD><D0B1>༭Ȩ<E0BCAD><C8A8>
|
|||
|
|
/// </summary>
|
|||
|
|
public bool ListConfig { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><>ѯ<EFBFBD>༭Ȩ<E0BCAD><C8A8>
|
|||
|
|
/// </summary>
|
|||
|
|
public bool QueryConfig { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20>༭ҳ<E0BCAD><D2B3><EFBFBD>༭Ȩ<E0BCAD><C8A8>
|
|||
|
|
/// </summary>
|
|||
|
|
public bool EditConfig { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|