移动系统liao
2024-05-17 67dd4a2ed9316a6c800503eaecf4d6a014653e47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
using Chuanyin.Attribute;
using CoreCms.Net.Model.Entities.baseModel;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
 
namespace CoreCms.Net.Model.Entities.baifenbingfa.jon
{
 
    /// <summary>
    /// 个人简历
    /// </summary>
    [SqlCodeFirst]
    public partial class Job_ApplicantProfile : BFBaseModel
    {
        /// <summary>
        /// 主键ID,自增长
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
        public int id { get; set; }
        /// <summary>
        /// 应聘的岗位。
        /// </summary>
        public int  jobId { get; set; }
 
        /// <summary>
        /// 应聘的岗位名称。
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        public string jobName { get; set; }
 
        /// <summary>
        /// 应聘者期望的最低薪资要求。
        /// </summary>
        public decimal minSalaryRequirement { get; set; }
 
        /// <summary>
        /// 应聘者的全名。
        /// </summary>
        public string? name { get; set; }
 
        /// <summary>
        /// 应聘者的性别。
        /// </summary>
        public string? gender { get; set; }
 
        /// <summary>
        /// 应聘者的身高(单位:厘米)。
        /// </summary>
        public int height { get; set; }
 
        /// <summary>
        /// 应聘者的体重(单位:千克)。
        /// </summary>
        public double weight { get; set; }
 
        /// <summary>
        /// 应聘者的出生日期。
        /// </summary>
        public DateTime? dateOfBirth { get; set; }
 
        /// <summary>
        /// 应聘者的出生日期。
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        public string dateOfBirthName { get; set; }
 
        /// <summary>
        /// 应聘者的出生日期。
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        public string dateOfBirthNameCeshi { get; set; }
 
        /// <summary>
        /// 应聘者的毕业学校名称。
        /// </summary>
        [SugarColumn(IsNullable =true)]
        public string? graduatingSchool { get; set; }
 
        /// <summary>
        /// 应聘者的最高学历。
        /// </summary>
        public string? educationLevel { get; set; }
 
        /// <summary>
        /// 应聘者的专业名称。
        /// </summary>
          [SugarColumn(IsNullable =true)]
        public string? major { get; set; }
 
        /// <summary>
        /// 是否吸烟。
        /// </summary>
        public string? smokes { get; set; }
 
        /// <summary>
        /// 驾驶技术等级(如新手、熟练、专业)。
        /// </summary>
        public string drivingSkill { get; set; }
 
        /// <summary>
        /// 应聘者的联系电话。
        /// </summary>
        public string phoneNumber { get; set; }
 
        /// <summary>
        /// 白酒酒量(例如,毫升或杯数)。
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public string? whiteWineCapacity { get; set; }
 
        /// <summary>
        /// 应聘者的政治面貌。
        /// </summary>
        public string politicalAffiliation { get; set; }
 
        /// <summary>
        /// 婚恋状况(例如,单身、已婚、离异等)。
        /// </summary>
        public string maritalStatus { get; set; }
 
        /// <summary>
        /// 专长能力。
        /// </summary>
        public string specialAbilities { get; set; }
 
        /// <summary>
        /// 应聘者的电子邮件地址。
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public string? email { get; set; }
 
        /// <summary>
        /// 生育情况(例如,无子女、有子女等)。
        /// </summary>   
        public string parentalStatus { get; set; }
 
        /// <summary>
        /// 居住地址。
        /// </summary>
        [SugarColumn(IsNullable = true,Length =512)]
        public string? residentialAddress { get; set; }
        /// <summary>
        /// 审核状态。
        /// </summary>
        public AuditStatus? AuditStatu { get; set; } = AuditStatus.Submitted;
 
 
 
        /// <summary>
        /// 生育情况(例如,无子女、有子女等)。
        /// </summary>   
        [SugarColumn(IsIgnore = true)] 
        public string? createTimetxt { get; set; }
        /// <summary>
        /// 形象图片地址
        /// </summary>   
        [SugarColumn(IsIgnore = true)]
        public string? avatar { get; set; }
 
        /// <summary>
        /// 证件照 用,分隔
        /// </summary>   
        [SugarColumn(IsIgnore = true,ColumnDescription = "证件照 用,分隔")]
        public string iDPicture { get; set; }
 
    }
    /// <summary>
    /// 审核状态
    /// </summary>
    public enum AuditStatus
    {
        /// <summary>
        /// 申请已提交,等待审核。
        /// </summary>
        [Description("已提交")]
        Submitted,
 
        /// <summary>
        /// 申请正在审核中。
        /// </summary>
        [Description("审核中")]
        UnderReview,
 
        /// <summary>
        /// 申请已被批准。
        /// </summary>
        [Description("已审核")]
        Approved,
 
        /// <summary>
        /// 申请已被拒绝。
        /// </summary>
        [Description("已拒绝")] 
        Rejected,
 
        /// <summary>
        /// 申请需要更多资料或信息。
        /// </summary>
        [Description("更多资料")] 
        Incomplete,
 
        /// <summary>
        /// 申请已撤回或取消。
        /// </summary>
        [Description("已撤回")] 
        Withdrawn,
 
        /// <summary>
        /// 申请处于其他未定义的状态。
        /// </summary>
        [Description("其他")] 
        Other
    }
    /// <summary>
    /// 工作经历
    /// </summary>
    [SqlCodeFirst]
    public partial  class  Job_EmploymentRecord
    {
        /// <summary>
        /// 主键ID,自增长
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
        public int id { get; set; }
        /// <summary>
        /// 工作开始日期。
        /// </summary>
        public DateTime? startDate { get; set; }
 
        /// <summary>
        /// 工作结束日期,如果是当前工作,则为空或表示至今的日期。
        /// </summary>
        public DateTime? endDate { get; set; }
 
        /// <summary>
        /// 工作结束日期,如果是当前工作,则为空或表示至今的日期。
        /// </summary>
 
        [SugarColumn(IsIgnore = true)]
        public string startDatetxt { get; set; }
 
        /// <summary>
        /// 工作单位的名称。
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public string? workplace { get; set; }
 
        /// <summary>
        /// 在该单位担任的职务或职位。
        /// </summary>
        [SugarColumn(Length =512, IsNullable = true)]
        public string? position { get; set; }
 
        /// <summary>
        /// 每月的工资或薪水。
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public decimal? monthlySalary { get; set; }
 
        /// <summary>
        /// 离职的原因。
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true)]
        
        public string? reasonForLeaving { get; set; }
 
 
        /// <summary>
        /// 简历ID
        /// </summary>
        public int ApplicantProfileId { get; set; }
    }
    /// <summary>
    /// 家庭成员
    /// </summary>
    [SqlCodeFirst]
    public class Job_FamilyMember
    {
        /// <summary>
        /// 主键ID,自增长
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
        public int id { get; set; }
        /// <summary>
        /// 简历ID
        /// </summary>
        public int ApplicantProfileId { get; set; }
        /// <summary>
        /// 姓名
        /// </summary>
        [SugarColumn(IsNullable =true)]
        public string? name { get; set; }
 
        /// <summary>
        /// 称谓
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public string? title { get; set; }
 
        /// <summary>
        /// 年龄
        /// </summary>
        [SugarColumn(IsNullable =true)]
        public int? age { get; set; }
 
        /// <summary>
        /// 工作单位及职务
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public string? workUnitAndPosition { get; set; }
    }
 
}