api list บรรจุ

api list คนในบรรจุ
This commit is contained in:
Kittapath 2023-06-29 21:04:49 +07:00
parent 385d37c985
commit 40e8a2641c
18 changed files with 31546 additions and 54 deletions

View file

@ -15,7 +15,7 @@ namespace BMA.EHR.Domain.Models.Placement
[Required, Comment("จำนวนผู้สอบได้"), MaxLength(10)]
public int Number { get; set; } = 0;
[Required, Comment("ประเภทการสอบ")]
public string TypeExam { get; set; } = string.Empty;
public required PlacementType PlacementType { get; set; }
[Required, Comment("วันที่เริ่มบัญชีบัญชี")]
public DateTime StartDate { get; set; }
[Required, Comment("วันที่สิ้นสุดบัญชี")]
@ -23,5 +23,6 @@ namespace BMA.EHR.Domain.Models.Placement
[Comment("สถานะการใช้งาน")]
public bool IsActive { get; set; } = true;
public virtual List<PlacementProfile> PlacementProfiles { get; set; } = new List<PlacementProfile>();
}
}