using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.User;
///
/// 创建用户输入.
///
[SuppressSniffer]
public class UserCrInput
{
///
/// 账户.
///
public string account { get; set; }
///
/// 用户姓名.
///
public string realName { get; set; }
///
/// 机构ID.
///
public string organizeId { get; set; }
///
/// 我的主管.
///
public string managerId { get; set; }
///
/// 岗位主键.
///
public string positionId { get; set; }
///
/// 角色主键.
///
public string roleId { get; set; }
///
/// 备注.
///
public string description { get; set; }
///
/// 性别.
///
public int? gender { get; set; }
///
/// 有效标志.
///
public int? enabledMark { get; set; }
///
/// 民族.
///
public string nation { get; set; }
///
/// 籍贯.
///
public string nativePlace { get; set; }
///
/// 证件类型.
///
public string certificatesType { get; set; }
///
/// 证件号码.
///
public string certificatesNumber { get; set; }
///
/// 文化程度.
///
public string education { get; set; }
///
/// 生日.
///
public DateTime? birthday { get; set; }
///
/// 入职日期.
///
public DateTime? entryDate { 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 long? sortCode { get; set; }
///
/// 分组ID.
///
public string groupId { get; set; }
}