using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.User; /// /// 用户信息输出. /// [SuppressSniffer] public class UserInfoOutput { /// /// 主键. /// public string id { get; set; } /// /// 账户. /// public string account { get; set; } /// /// 用户姓名. /// public string realName { get; set; } /// /// 机构ID. /// public string organizeId { get; set; } /// /// 机构 父级组织. /// public List> organizeIdTree { get; set; } /// /// 我的主管. /// public string managerId { get; set; } /// /// 岗位主键. /// public string positionId { get; set; } /// /// 角色主键. /// public string roleId { get; set; } /// /// 备注. /// public string description { get; set; } /// /// 性别. /// public string gender { get; set; } /// /// 民族. /// public string nation { get; set; } /// /// 籍贯. /// public string nativePlace { get; set; } /// /// 入职日期. /// public DateTime? entryDate { get; set; } /// /// 证件类型. /// public string certificatesType { get; set; } /// /// 证件号码. /// public string certificatesNumber { get; set; } /// /// 文化程度. /// public string education { get; set; } /// /// 生日. /// public DateTime? birthday { get; set; } /// /// 电话. /// public string telePhone { get; set; } /// /// 固定电话. /// public string landline { get; set; } /// /// 手机. /// public string mobilePhone { get; set; } /// /// 邮箱. /// public string email { get; set; } /// /// 紧急联系人. /// public string urgentContacts { get; set; } /// /// 紧急电话. /// public string urgentTelePhone { get; set; } /// /// 通讯地址. /// public string postalAddress { get; set; } /// /// 头像. /// public string headIcon { get; set; } /// /// 有效标志. /// public int? enabledMark { get; set; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 分组ID. /// public string groupId { get; set; } }