2023-08-25 12:27:12 +07:00
|
|
|
|
namespace BMA.EHR.Command.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CreateCommandGroup7Request
|
|
|
|
|
|
{
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
2023-09-04 13:50:49 +07:00
|
|
|
|
public string placementCommandIssuer { get; set; } = string.Empty;
|
2023-08-25 12:27:12 +07:00
|
|
|
|
|
2023-09-04 13:50:49 +07:00
|
|
|
|
public string placementCommandNo { get; set; } = string.Empty;
|
2023-08-25 12:27:12 +07:00
|
|
|
|
|
2023-09-04 13:50:49 +07:00
|
|
|
|
public DateTime placementCommandDate { get; set; } = DateTime.Now;
|
2023-08-25 12:27:12 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|