Report C-PM-11, C-PM-12, C-PM-21 (Template เท่านั้น)

This commit is contained in:
Suphonchai Phoonsawat 2023-09-04 09:17:18 +07:00
parent 55a0f5c6ed
commit 7b4d0e1ae6
5 changed files with 250 additions and 12 deletions

View file

@ -0,0 +1,27 @@
namespace BMA.EHR.Application.Responses.Reports
{
public class CommandType11Response
{
public string CommandNo { get; set; } = string.Empty;
public string CommandYear { get; set; } = string.Empty;
public string IssuerOrganizationName { get; set; } = string.Empty;
public string CommandAffectDate { get; set; } = string.Empty;
public string AuthorizedUserFullName { get; set; } = string.Empty;
public string AuthorizedPosition { get; set; } = string.Empty;
public string CitizenId { get; set; } = string.Empty;
public string FullName { get; set; } = string.Empty;
public string PlacementCommandIssuer { get; set; } = string.Empty;
public string PlacementCommandNo { get; set; } = string.Empty;
public string PlacementCommandDate { get; set; } = string.Empty;
}
}