2024-05-23 17:08:59 +07:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Report.Service.Responses
|
|
|
|
|
{
|
|
|
|
|
public class kp7ShortRequest
|
|
|
|
|
{
|
|
|
|
|
public OrgRequestData result { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
public class OrgRequestData
|
|
|
|
|
{
|
|
|
|
|
public string? CitizenId { get; set; }
|
|
|
|
|
public string? Prefix { get; set; }
|
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
|
public string? DateOfBirth { get; set; }
|
|
|
|
|
public string? DateRetire { get; set; }
|
|
|
|
|
public string? RegistrationAddress { get; set; }
|
|
|
|
|
public string? SalaryAmount { get; set; }
|
2024-09-05 10:50:58 +07:00
|
|
|
public List<Educations> Education { get; set; }
|
2024-05-23 17:08:59 +07:00
|
|
|
public string? AppointText { get; set; }
|
|
|
|
|
public string? SalaryDate { get; set; }
|
|
|
|
|
public string? PositionName { get; set; }
|
|
|
|
|
public string? OcFullPath { get; set; }
|
2024-09-23 12:58:40 +07:00
|
|
|
public string? ImgUrl { get; set; }
|
2024-05-23 17:08:59 +07:00
|
|
|
}
|
2024-09-05 10:50:58 +07:00
|
|
|
|
|
|
|
|
public class Educations
|
|
|
|
|
{
|
|
|
|
|
public string? Institute { get; set; }
|
|
|
|
|
public string? Date { get; set; }
|
|
|
|
|
public string? Degree { get; set; }
|
|
|
|
|
}
|
2024-05-23 17:08:59 +07:00
|
|
|
}
|