เพิ่มเก็บคะแนนภาค ข ค

This commit is contained in:
Kittapath 2023-04-25 03:46:57 +07:00
parent 096648cce1
commit 0273a37503
9 changed files with 1816 additions and 25 deletions

View file

@ -25,8 +25,23 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
[Comment("เลขที่นั่งสอบ")]
public string? SeatNumber { get; set; }
[Comment("คะแนน")]
public string? Point { get; set; }
[Comment("คะแนนเต็มภาค ข")]
public string? PointTotalB { get; set; }
[Comment("คะแนนภาค ข")]
public string? PointB { get; set; }
[Comment("ผลสอบภาค ข")]
public string? ResultB { get; set; }
[Comment("คะแนนเต็มภาค ค")]
public string? PointTotalC { get; set; }
[Comment("คะแนนภาค ค")]
public string? PointC { get; set; }
[Comment("ผลสอบภาค ค")]
public string? ResultC { get; set; }
[Comment("Id รูปโปรไฟล์")]
public virtual Document? ProfileImg { get; set; }
@ -227,7 +242,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Models
public string? RejectDetail { get; set; }
[Comment("ผลสมัครสอบ")]
public bool? Pass { get; set; }
public string? Pass { get; set; }
}
}