using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.User; /// /// 用户数据导入 输入. /// [SuppressSniffer] public class UserListImportDataInput { /// /// Id 主键. /// public string id { get; set; } /// /// 性别. /// public string gender { get; set; } /// /// 启用标识 【0-停用、1-启用】. /// public string enabledMark { get; set; } /// /// 账号. /// public string account { get; set; } /// /// 姓名. /// public string realName { get; set; } /// /// 邮箱. /// public string email { get; set; } /// /// 所属组织. /// public string organizeId { get; set; } /// /// 直属主管/账号. /// public string managerId { get; set; } /// /// 岗位. /// public string positionId { get; set; } /// /// 角色. /// public string roleId { get; set; } /// /// 排序码. /// public string sortCode { get; set; } /// /// 描述. /// public string description { get; set; } /// /// 民族. /// public string nation { get; set; } /// /// 籍贯. /// public string nativePlace { get; set; } /// /// 入职日期. /// public string entryDate { get; set; } /// /// 证件类型. /// public string certificatesType { get; set; } /// /// 证件号码. /// public string certificatesNumber { get; set; } /// /// 文化程度. /// public string education { get; set; } /// /// 生日. /// public string birthday { get; set; } /// /// 电话. /// public string telePhone { get; set; } /// /// 固定电话 /// public string landline { get; set; } /// /// 手机. /// public string mobilePhone { get; set; } /// /// 紧急联系人. /// public string urgentContacts { get; set; } /// /// 紧急联系电话. /// public string urgentTelePhone { get; set; } /// /// 通讯地址. /// public string postalAddress { get; set; } }