Report Command 04-07

This commit is contained in:
Suphonchai Phoonsawat 2023-09-03 13:35:58 +07:00
parent 1ebdddaa6a
commit 1404ba3be5
12 changed files with 922 additions and 51 deletions

View file

@ -0,0 +1,35 @@
namespace BMA.EHR.Application.Responses.Reports
{
public class CommandType03Response
{
public string CitizenId { get; set; } = string.Empty;
public string FullName { get; set; } = string.Empty;
public string OldOc { get; set; } = string.Empty;
public string OldPositionName { get; set; } = string.Empty;
public string OldPositionLevel { get; set; } = string.Empty;
public string OldPositionType { get; set; } = string.Empty;
public string OldPositionNumber { get; set; } = string.Empty;
public double OldSalary { get; set; } = 0;
public string NewOc { get; set; } = string.Empty;
public string NewPositionName { get; set; } = string.Empty;
public string NewPositionLevel { get; set; } = string.Empty;
public string NewPositionType { get; set; } = string.Empty;
public string NewPositionNumber { get; set; } = string.Empty;
public double NewSalary { get; set; } = 0;
public string AppointDate { get; set; } = string.Empty;
}
}