ปรับ ui สรรหาสอบคัดเลือก

This commit is contained in:
Kittapath 2023-10-02 00:22:28 +07:00
parent c79bc39c86
commit fbef67f33a
29 changed files with 7384 additions and 666 deletions

View file

@ -8,26 +8,25 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
{
[Required, Column(Order = 7), Comment("Id ผู้สมัคร")]
public virtual Candidate? Candidate { get; set; }
[Comment("Idวุฒิที่ได้รับ")]
public Guid? EducationLevelId { get; set; }
[Comment("วุฒิที่ได้รับ")]
public string? EducationLevelName { get; set; }
[Required, Column(Order = 4), Comment("สาขาวิชา/วิชาเอก")]
public string Major { get; set; } = string.Empty;
[Required, MaxLength(10), Column(Order = 6), Comment("คะแนนเฉลี่ยตลอดหลักสูตร")]
public float Scores { get; set; }
[Required, Column(Order = 3), Comment("ชื่อสถานศึกษา")]
public string Name { get; set; } = string.Empty;
[Required, Column(Order = 1), Comment("ระยะเวลาเริ่ม")]
public DateTime DurationStart { get; set; } = DateTime.Now.Date;
[Required, Column(Order = 2), Comment("ระยะเวลาสิ้นสุด")]
public DateTime DurationEnd { get; set; } = DateTime.Now.Date;
[Comment("Id วุฒิที่ใช้สมัครสอบ")]
public Guid? EducationLevelExamId { get; set; }
[Comment("วุฒิที่ใช้สมัครสอบ")]
public string? EducationLevelExamName { get; set; }
[Comment("ชื่อปริญญา")]
public string? EducationName { get; set; }
[Comment("สาขาวิชา/วิชาเอก")]
public string? EducationMajor { get; set; }
[Comment("ชื่อสถานศึกษา")]
public string? EducationLocation { get; set; }
[Comment("ประเภทสถานศึกษา")]
public string? EducationType { get; set; }
[Comment("วันที่สำเร็จการศึกษา")]
public DateTime? EducationEndDate { get; set; }
[Comment("คะแนนเฉลี่ยสะสม")]
public string? EducationScores { get; set; }
[Comment("Id วุฒิการศึกษาสูงสุด")]
public Guid? EducationLevelHighId { get; set; }
[Comment("วุฒิการศึกษาสูงสุด")]
public string? EducationLevelHighName { get; set; }
}
}