hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandGroup9Request.cs
2023-08-25 12:27:12 +07:00

31 lines
849 B
C#

using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup9Request
{
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 transferOrganizationName { get; set; }
public string? conclusionReceiveNo { get; set; }
public DateTime? conclusionReceiveDate { get; set; }
}
}