移动系统liao
2024-05-16 851867ee53ea4a7d9f65f2b78111a69e3c4bc669
CoreCms.Net.Model/Entities/baifenbingfa/job/ApplicantProfilePartial.cs
@@ -25,13 +25,27 @@
        /// 工作简历
        /// </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; }
    }
}