คำสั่ง 22 เพิ่มครั้งที่

This commit is contained in:
Kittapath 2023-10-31 23:02:23 +07:00
parent cc711146c5
commit 6cfe02a2e0
8 changed files with 17021 additions and 2 deletions

View file

@ -0,0 +1,27 @@
namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup12Request
{
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? conclusionTranferNo { get; set; }
public DateTime? conclusionTranferDate { get; set; }
}
}