Add API Create command For C-PM-10 to C-PM-17

This commit is contained in:
Suphonchai Phoonsawat 2023-08-25 12:27:12 +07:00
parent ec53034b4d
commit ab5afff6e0
9 changed files with 1032 additions and 0 deletions

View file

@ -103,6 +103,72 @@ namespace BMA.EHR.Domain.Models.Commands.Core
#endregion
#region " C-PM-10,C-PM-11,C-PM-12 "
[Comment("หน่วยงานที่ออกคำสั่งบรรจุ")]
public string? PlacementCommandIssuer { get; set; }
[Comment("เลขที่คำสั่งบรรจุ")]
public string? PlacementCommandNo { get; set; }
[Comment("คำสั่งบรรจุลงวันที่")]
public DateTime? PlacementCommandDate { get; set; }
#endregion
#region " C-PM-10 "
[Comment("ตำแหน่งที่บรรจุ")]
public string? PlacementPositionName { get; set; }
[Comment("สังกัดที่บรรจุ")]
public string? PlacementOrganizationName { get; set; }
[Comment("วันที่เริ่มทดลองปฏิบัติราชการ")]
public DateTime? ProbationStartDate { get; set; }
[Comment("วันที่สิ้นสุดการทดลองปฏิบัติราชการ")]
public DateTime? ProbationEndDate { get; set; }
[Comment("ประธานคณะกรรมการ")]
public string? ChairManFullName { get; set; }
[Comment("กรรมการคนที่ 1")]
public string? Member1FullName { get; set; }
[Comment("กรรมการคนที่ 2")]
public string? Member2FullName { get; set; }
#endregion
#region " C-PM-13 "
[Comment("ส่วนราชการที่รับโอน")]
public string? ReceiveOrganizationName { get; set; }
#endregion
#region " C-PM-14 "
[Comment("ส่วนราชการที่ให้โอน")]
public string? TransferOrganizationName { get; set; }
[Comment("มติ กก. ครั้งที่ (การรับโอน)")]
public string? ConclusionReceiveNo { get; set; }
[Comment("ลงวันที่ (การรับโอน)")]
public DateTime? ConclusionReceiveDate { get; set; }
#endregion
#region " C-PM-16 "
public string? GovAidCommandNo { get; set; }
public DateTime? GovAidCommandDate { get; set; }
#endregion
public virtual List<CommandDocument> Documents { get; set; } = new();
public virtual List<CommandReceiver> Receivers { get; set; }