Explorar o código

删除PaymentSystem.Domain

feint %!s(int64=2) %!d(string=hai) anos
pai
achega
20b82acd57

BIN=BIN
OASystem/.vs/OASystem/DesignTimeBuild/.dtbcache.v2


BIN=BIN
OASystem/.vs/OASystem/FileContentIndex/1f8748de-47da-4493-9b6c-9ffbfb346291.vsidx


BIN=BIN
OASystem/.vs/OASystem/FileContentIndex/c2f74eef-c608-4ece-ae9d-07d942e50ccd.vsidx


+ 0 - 159
OASystem/PaymentSystem.Domain/Entities/System/Sys_Users.cs

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