แก้reportคำสั่งพ้นราชการ

This commit is contained in:
Kittapath 2024-02-05 19:16:42 +07:00
parent b99330e94b
commit e52e9e0c05
2 changed files with 35 additions and 2 deletions

View file

@ -0,0 +1,33 @@
namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup14Request
{
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; }
}
}