Report C-PM-13 Cover and Attachment

This commit is contained in:
Suphonchai Phoonsawat 2023-09-04 11:37:37 +07:00
parent 7b4d0e1ae6
commit 0eac2a0c61
6 changed files with 206 additions and 13 deletions

View file

@ -0,0 +1,25 @@
namespace BMA.EHR.Application.Responses.Reports
{
public class CommandType13Response
{
public string CitizenId { get; set; } = string.Empty;
public string FullName { get; set; } = string.Empty;
public string Organization { get; set; } = string.Empty;
public string PositionName { get; set; } = string.Empty;
public string PositionLevel { get; set; } = string.Empty;
public string PositionType { get; set; } = string.Empty;
public string PositionNumber { get; set; } = string.Empty;
public double Salary { get; set; } = 0;
public string ReceiveOrganizationName { get; set; } = string.Empty;
public string ActiveDate { get; set; } = string.Empty;
}
}