using OASystem.Domain.Entities; using SqlSugar; namespace OASystem.Domain.Entities.System { /// /// 用户表 /// [SugarTable("Sys_Users")] public class Sys_Users : EntityBase { /// /// 中文姓名 /// [SugarColumn(IsNullable = false, Length = 50)] public string CnName { get; set; } /// /// 英文姓名 /// [SugarColumn(IsNullable = false, Length = 50)] public string EnName { get; set; } /// /// 工号 /// [SugarColumn(IsNullable = false, Length = 50)] public string Number { get; set; } /// /// 公司Id /// [SugarColumn(IsNullable = false)] public int CompanyId { get; set; } /// /// 部门Id /// [SugarColumn(IsNullable = false)] public int DepId { get; set; } /// /// 岗位Id /// [SugarColumn(IsNullable = false)] public int JobPostId { get; set; } /// /// 密码 /// [SugarColumn(IsNullable = false, Length = 50)] public string Password { get; set; } /// /// 性别0 男1 女 2 未设置 /// [SugarColumn(IsNullable = false)] public int Sex { get; set; } /// /// 分机号 /// [SugarColumn(IsNullable = false, Length = 50)] public string Ext { get; set; } /// /// 手机号 /// [SugarColumn(IsNullable = false, Length = 50)] public string Phone { get; set; } /// /// 紧急联系人 手机号 /// [SugarColumn(IsNullable = false, Length = 50)] public string UrgentPhone { get; set; } /// /// 邮箱 /// [SugarColumn(IsNullable = false, Length = 50)] public string Email { get; set; } /// /// 住址 /// [SugarColumn(IsNullable = false, Length = 200)] public string Address { get; set; } /// /// 入职时间 /// [SugarColumn(IsNullable = false)] public DateTime Edate { get; set; } /// /// 离职时间 /// [SugarColumn(IsNullable = false)] public DateTime Rdate { get; set; } /// /// 工龄 /// [SugarColumn(IsNullable = false)] public int Seniority { get; set; } /// /// 生日 /// [SugarColumn(IsNullable = false)] public DateTime Birthday { get; set; } /// /// 身份证号码 /// [SugarColumn(IsNullable = false, Length = 20)] public string IDCard { get; set; } /// /// 开始工作时 /// [SugarColumn(IsNullable = false)] public DateTime StartWorkDate { get; set; } /// /// 毕业学校 /// [SugarColumn(IsNullable = false, Length = 200)] public string GraduateInstitutions { get; set; } /// /// 专业 /// [SugarColumn(IsNullable = false, Length = 50)] public string Professional { get; set; } /// /// 专业 /// [SugarColumn(IsNullable = false)] public int Education { get; set; } /// /// 学历类型 /// [SugarColumn(IsNullable = false)] public int TheOrAdultEducation { get; set; } /// /// 婚姻状态 /// [SugarColumn(IsNullable = false, Length = 200)] public string MaritalStatus { get; set; } /// /// 家庭地址 /// [SugarColumn(IsNullable = false, Length = 200)] public string HomeAddress { get; set; } /// /// 试用期 /// [SugarColumn(IsNullable = false, Length = 200)] public string UsePeriod { get; set; } /// /// 工作经历 /// [SugarColumn(IsNullable = false, Length = 500)] public string WorkExperience { get; set; } /// /// 证书上传 /// [SugarColumn(IsNullable = false, Length = 500)] public string Certificate { get; set; } /// /// 人事审核 0未审核(初始状态) 1 已通过(可用)2已拒绝 /// [SugarColumn(IsNullable = false)] public int HrAudit { get; set; } } }