Gen หน้าคำสั่ง
This commit is contained in:
parent
1404ba3be5
commit
cf966cd096
15 changed files with 817 additions and 33 deletions
|
|
@ -0,0 +1,17 @@
|
|||
namespace BMA.EHR.Application.Responses.Reports
|
||||
{
|
||||
public class CommandType15Response
|
||||
{
|
||||
public string CitizenId { get; set; } = string.Empty;
|
||||
|
||||
public string FullName { get; set; } = string.Empty;
|
||||
|
||||
public string PositionName { get; set;} = string.Empty;
|
||||
|
||||
public string Organization { get; set;} = string.Empty;
|
||||
|
||||
public string StartDate { get; set; } = string.Empty;
|
||||
|
||||
public string EndDate { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
namespace BMA.EHR.Application.Responses.Reports
|
||||
{
|
||||
public class CommandType17Response
|
||||
{
|
||||
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 ActiveDate { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
namespace BMA.EHR.Application.Responses.Reports
|
||||
{
|
||||
public class CommandType18Response
|
||||
{
|
||||
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 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 Fault { get; set; } = string.Empty;
|
||||
|
||||
public string GuiltyBasis { get; set; } = string.Empty;
|
||||
|
||||
public string ConclusionFireNo { get; set; } = string.Empty;
|
||||
|
||||
public string ConclusionFireDate { get; set; } = string.Empty;
|
||||
|
||||
public string ConclusionFireResolution { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue