using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.UserDto
{
///
/// 注册用户
/// 提交DTO
///
public class RegisterDto
{
///
/// 申请注册UserId
///
public int CreateUserId { get; set; }
///
/// 中文名
///
public string? CnName { get; set; }
///
/// 英文名称
///
public string? EnName { get; set; }
///
/// 邮箱
///
public string? Email { get; set; }
///
/// 性别
/// 0 男 1 女
///
public int Sex { get; set; }
///
/// 手机号
///
public string? Phone { get; set; }
///
/// 紧急联系人手机号
///
public string? UrgencyPhone { get; set; }
///
/// 密码
///
public int Password { get; set; }
///
/// 现在居住住址
///
public string Address { get; set; }
///
/// 身份证号
///
public string? IdCrad { get; set; }
///
/// 出生日期
///
public DateTime BirthDay { get; set; }
///
/// 学历
/// 0 未设置 1 大专 2 本科 3 研究生
///
public int Education { get; set; }
///
/// 专业
/// 英语/数学 等等
///
public string? Major { get; set; }
///
/// 毕业学校
///
public string? GraduationSchhol { get; set; }
///
/// 教育类型
/// 统招/成教
///
public int EducationType { get; set; }
///
/// 婚姻状态
/// 已婚/未婚
///
public string? MaritalStatus{ get; set; }
///
/// 家庭地址
///
public string? HomeAddress { get; set; }
///
/// 公司Id
///
public int CompanyId { get; set; }
///
/// 部门Id
///
public int DepId { get; set; }
///
/// 岗位Id
///
public int JobPostId { get; set; }
///
/// 工作经历
///
public string? WorkExperience { get; set; }
}
}