Report Command 04-07
This commit is contained in:
parent
1ebdddaa6a
commit
1404ba3be5
12 changed files with 922 additions and 51 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue