แก้ model สอบคัดเลือก

This commit is contained in:
Kittapath 2023-10-08 13:58:03 +07:00
parent 5456eda96f
commit 4fb8439968
6 changed files with 131 additions and 63 deletions

View file

@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recurit.Exam.Service.Models
{
public class PositionExam : EntityBase
public class PositionExam : EntityBase
{
[Required, Comment("Id การสอบ")]
public virtual PeriodExam? PeriodExam { get; set; }
@ -14,10 +14,22 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
[Comment("ชื่อตำแหน่ง")]
public string? PositionName { get; set; }
[Comment("Id ระดับ")]
public Guid? PositionLevelId { get; set; }
[Comment("ชื่อระดับ")]
public string? PositionLevelName { get; set; }
[Comment("Id ประเภทแบบฟอร์ม")]
public string? TypeId { get; set; }
[Comment("ชื่อประเภทแบบฟอร์ม")]
public string? TypeName { get; set; }
[Comment("ปริญญาบัตรขึ้นไป")]
public bool HighDegree { get; set; }
[Comment("รหัสประจำตำแหน่งที่สอบ")]
public string? Code { get; set; }
}
}