using JNPF.DependencyInjection;
namespace JNPF.Apps.Entitys.Dto;
///
///
///
[SuppressSniffer]
public class AppUserInfoOutput
{
///
/// id.
///
public string? id { get; set; }
///
/// 用户名.
///
public string? realName { get; set; }
///
/// 部门名.
///
public string? organizeName { get; set; }
///
/// 账号.
///
public string? account { get; set; }
///
/// 岗位名.
///
public string? positionName { get; set; }
///
/// 电话.
///
public string? telePhone { get; set; }
///
/// 座机号.
///
public string? landline { get; set; }
///
/// 手机号.
///
public string? mobilePhone { get; set; }
///
/// 头像.
///
public string? headIcon { get; set; }
///
/// 邮箱.
///
public string? email { get; set; }
}