hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandGroup11Request.cs

39 lines
1.1 KiB
C#

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; }
public string caseFault { get; set; }
public string faultLevel { get; set; }
public string refRaw { get; set; }
public string result { get; set; }
public Guid? complaintId { get; set; }
}
}