| | |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Runtime.Serialization; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | |
| | | /// 应聘的岗位。 |
| | | /// </summary> |
| | | public int jobId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 应聘的岗位名称。 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string jobName { 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> |
| | | public AuditStatus? AuditStatu { get; set; } = AuditStatus.Submitted; |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 生育情况(例如,无子女、有子女等)。 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? createTimetxt { get; set; } |
| | | /// <summary> |
| | | /// 形象图片 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true,Length =1024)] |
| | | public string? avatar { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 证件照 用,分隔 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true,ColumnDescription = "证件照 用,分隔",Length =2048)] |
| | | public string iDPicture { get; set; } |
| | | |
| | | } |
| | | /// <summary> |
| | |
| | | /// <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> |
| | |
| | | public DateTime? endDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工作结束日期,如果是当前工作,则为空或表示至今的日期。 |
| | | /// </summary> |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string startDatetxt { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工作单位的名称。 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true)] |