| | |
| | | /// 工作简历 |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToMany, nameof(Job_EmploymentRecord.ApplicantProfileId))] |
| | | public List<Job_EmploymentRecord> employmentRecords{ get; set; } |
| | | public List<Job_EmploymentRecord>? employmentRecords{ get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工作简历 |
| | | /// 家庭成员 |
| | | /// </summary> |
| | | [Display(Name = "洽谈时间")] |
| | | [Display(Name = "家庭成员")] |
| | | [Navigate(NavigateType.OneToMany, nameof(Job_FamilyMember.ApplicantProfileId))] |
| | | public List<Job_FamilyMember> FamilyMembers { get; set; } |
| | | public List<Job_FamilyMember>? FamilyMembers { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | |
| | | public partial class Job_EmploymentRecord |
| | | { |
| | | /// <summary> |
| | | /// 起始结束时间 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore =true)] |
| | | [Required] |
| | | public List<DateTime> StartEndDateTimes { get; set; } |
| | | } |
| | | } |