2023-07-20 15:26:44 +07:00
|
|
|
|
namespace BMA.EHR.Command.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CreateCommandRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid orderTypeValue { get; set; }
|
|
|
|
|
|
|
2023-08-18 14:23:11 +07:00
|
|
|
|
public string orderTitle { get; set; } = string.Empty;
|
2023-07-20 15:26:44 +07:00
|
|
|
|
|
2023-08-18 14:23:11 +07:00
|
|
|
|
public string orderNo { get; set; } = string.Empty;
|
2023-07-20 15:26:44 +07:00
|
|
|
|
|
|
|
|
|
|
public int orderYear { get; set; }
|
|
|
|
|
|
|
2023-08-04 15:17:17 +07:00
|
|
|
|
public DateTime orderDate { get; set; }
|
|
|
|
|
|
|
2023-07-20 15:26:44 +07:00
|
|
|
|
public Guid orderBy { get; set; }
|
|
|
|
|
|
|
2023-08-20 11:07:18 +07:00
|
|
|
|
public string orderByOrganizationName { get; set; } = string.Empty;
|
2023-07-20 15:26:44 +07:00
|
|
|
|
|
2023-08-20 11:07:18 +07:00
|
|
|
|
public string signatoryBy { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string signatoryPosition { get; set; } = string.Empty;
|
2023-07-20 15:26:44 +07:00
|
|
|
|
|
|
|
|
|
|
public Guid examRound { get; set; }
|
|
|
|
|
|
|
2023-08-20 11:07:18 +07:00
|
|
|
|
public string registerPosition { get; set; } = string.Empty;
|
2023-07-20 15:26:44 +07:00
|
|
|
|
|
2023-08-20 11:07:18 +07:00
|
|
|
|
public string conclusionRegisterNo { get; set; } = string.Empty;
|
2023-07-20 15:26:44 +07:00
|
|
|
|
|
|
|
|
|
|
public DateTime conclusionRegisterDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string conclusionResultNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime conclusionResultDate { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|