hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandGroup6Request.cs

44 lines
1.2 KiB
C#
Raw Permalink Normal View History

namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup6Request
{
public Guid orderTypeValue { get; set; }
public string orderTitle { get; set; } = string.Empty;
public string orderNo { get; set; } = string.Empty;
public int orderYear { get; set; }
public DateTime orderDate { get; set; }
public Guid orderBy { get; set; }
public string orderByOrganizationName { get; set; } = string.Empty;
public string signatoryBy { get; set; } = string.Empty;
public string signatoryPosition { get; set; } = string.Empty;
public string placementCommandIssuer { get; set; }
public string placementCommandNo { get; set; }
public DateTime placementCommandDate { get; set; }
public string placementPositionName { get; set; }
public string placementOrganizationName { get; set; }
public DateTime probationStartDate { get; set; }
public DateTime probationEndDate { get; set; }
public string chairManFullName { get; set; }
public string member1FullName { get; set; }
public string member2FullName { get; set; }
}
}