mh_lcmk_sms_service/APT.BaseData.Domain/ApiModel/FM/RichUserModel.cs

43 lines
1.1 KiB
C#
Raw Permalink Normal View History

2024-07-12 16:37:09 +08:00
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; }
}
}