เพิ่ม api สร้างคำสั่ง C-PM-18 ถึง C-PM-20

This commit is contained in:
Suphonchai Phoonsawat 2023-08-25 14:41:31 +07:00
parent 200e8eb5f6
commit 20ef0c5c09
7 changed files with 16216 additions and 2 deletions

View file

@ -163,12 +163,33 @@ namespace BMA.EHR.Domain.Models.Commands.Core
#region " C-PM-16 "
[Comment("คำสั่งเลขที่ (คำสั่งช่วยราชการ)")]
public string? GovAidCommandNo { get; set; }
[Comment("ลงวันที่ (คำสั่งช่วยราชการ)")]
public DateTime? GovAidCommandDate { get; set; }
#endregion
#region " C-PM-18, C-PM-19 and C-PM-20 "
[Comment("รายละเอียดการกระทำผิด")]
public string? Fault { get; set; }
[Comment("ฐานความผิด")]
public string? GuiltyBasis { get; set; }
[Comment("ครั้งที่ (เรื่องการดำเนินการทางวินัย)")]
public string? ConclusionFireNo { get; set; }
[Comment("ลงวันที่ (เรื่องการดำเนินการทางวินัย)")]
public DateTime? ConclusionFireDate { get; set; }
[Comment("มติที่ประชุม (เรื่องการดำเนินการทางวินัย)")]
public string? ConclusionFireResolution { get; set; }
#endregion
public virtual List<CommandDocument> Documents { get; set; } = new();
public virtual List<CommandReceiver> Receivers { get; set; }