เพิ่ม 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

@ -0,0 +1,33 @@
namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup11Request
{
public Guid orderTypeValue { get; set; }
public string orderTitle { get; set; } = string.Empty;
public string orderNo { get; set; } = string.Empty;
public int orderYear { get; set; }
public DateTime orderDate { get; set; }
public Guid orderBy { get; set; }
public string orderByOrganizationName { get; set; } = string.Empty;
public string signatoryBy { get; set; } = string.Empty;
public string signatoryPosition { get; set; } = string.Empty;
public string fault { get; set; }
public string guiltyBasis { get; set; }
public string conclusionFireNo { get; set; }
public DateTime conclusionFireDate { get; set; }
public string conclusionFireResolution { get; set; }
}
}