You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Entity.DbModel.System.SysBaseObject;
|
|
|
|
|
|
|
|
|
|
namespace Entity.Dto.Resp
|
|
|
|
|
{
|
|
|
|
|
public class UserResp : SysUser
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 机构名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OrgName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 职位名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PosName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RoleName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 域用户
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DomainAccount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|