90 lines
4.6 KiB
C#
90 lines
4.6 KiB
C#
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
{
|
|
public class CandidateResponseItem
|
|
{
|
|
// public Models.Prefix? Prefix { get; set; }
|
|
public string? PrefixId { get; set; }
|
|
public string? Prefix { get; set; }
|
|
public string? FirstName { get; set; } = string.Empty;
|
|
public string? LastName { get; set; } = string.Empty;
|
|
public string? Nationality { get; set; } = string.Empty;
|
|
public DateTime? DateOfBirth { get; set; }
|
|
// public Models.Relationship? Relationship { get; set; }
|
|
public string? ReligionId { get; set; }
|
|
// public string? Religion { get; set; }
|
|
public string? Email { get; set; } = string.Empty;
|
|
public string? CitizenId { get; set; } = string.Empty;
|
|
// public Models.Province? CitizenProvince { get; set; }
|
|
// public string? CitizenProvinceId { get; set; }
|
|
// public string? CitizenProvince { get; set; }
|
|
// // public Models.District? CitizenDistrict { get; set; }
|
|
// public string? CitizenDistrictId { get; set; }
|
|
// public string? CitizenDistrict { get; set; }
|
|
// public DateTime? CitizenDate { get; set; }
|
|
public string? Telephone { get; set; }
|
|
public string? MobilePhone { get; set; }
|
|
public string? Knowledge { get; set; }
|
|
public string? RegistAddress { get; set; }
|
|
// public Models.Province? RegistProvince { get; set; }
|
|
public string? RegistProvinceId { get; set; }
|
|
public string? RegistProvince { get; set; }
|
|
// public Models.District? RegistDistrict { get; set; }
|
|
public string? RegistDistrictId { get; set; }
|
|
public string? RegistDistrict { get; set; }
|
|
// public Models.SubDistrict? RegistSubDistrict { get; set; }
|
|
public string? RegistSubDistrictId { get; set; }
|
|
public string? RegistSubDistrict { get; set; }
|
|
public string? RegistZipCode { get; set; }
|
|
public bool? RegistSame { get; set; }
|
|
public string? CurrentAddress { get; set; }
|
|
// public Models.Province? CurrentProvince { get; set; }
|
|
public string? CurrentProvinceId { get; set; }
|
|
public string? CurrentProvince { get; set; }
|
|
// public Models.District? CurrentDistrict { get; set; }
|
|
public string? CurrentDistrictId { get; set; }
|
|
public string? CurrentDistrict { get; set; }
|
|
// public Models.SubDistrict? CurrentSubDistrict { get; set; }
|
|
public string? CurrentSubDistrictId { get; set; }
|
|
public string? CurrentSubDistrict { get; set; }
|
|
public string? CurrentZipCode { get; set; }
|
|
// public bool? Marry { get; set; }
|
|
// // public Models.Prefix? MarryPrefix { get; set; }
|
|
// public string? MarryPrefixId { get; set; }
|
|
// public string? MarryPrefix { get; set; }
|
|
// public string? MarryFirstName { get; set; }
|
|
// public string? MarryLastName { get; set; }
|
|
// public string? MarryOccupation { get; set; }
|
|
// public string? MarryNationality { get; set; }
|
|
// // public Models.Prefix? FatherPrefix { get; set; }
|
|
// public string? FatherPrefixId { get; set; }
|
|
// public string? FatherPrefix { get; set; }
|
|
// public string? FatherFirstName { get; set; }
|
|
// public string? FatherLastName { get; set; }
|
|
// public string? FatherOccupation { get; set; }
|
|
// public string? FatherNationality { get; set; }
|
|
// // public Models.Prefix? MotherPrefix { get; set; }
|
|
// public string? MotherPrefixId { get; set; }
|
|
// public string? MotherPrefix { get; set; }
|
|
// public string? MotherFirstName { get; set; }
|
|
// public string? MotherLastName { get; set; }
|
|
// public string? MotherOccupation { get; set; }
|
|
// public string? MotherNationality { get; set; }
|
|
public string? OccupationOrg { get; set; }
|
|
public string? OccupationPile { get; set; }
|
|
public string? OccupationGroup { get; set; }
|
|
public int? OccupationSalary { get; set; }
|
|
public string? OccupationPosition { get; set; }
|
|
public string? OccupationPositionType { get; set; }
|
|
public string? OccupationTelephone { get; set; }
|
|
|
|
public Guid EducationLevelExamId { get; set; }
|
|
public string EducationName { get; set; } = string.Empty;
|
|
public string EducationMajor { get; set; } = string.Empty;
|
|
public string EducationLocation { get; set; } = string.Empty;
|
|
public string EducationType { get; set; } = string.Empty;
|
|
public DateTime EducationEndDate { get; set; }
|
|
public string EducationScores { get; set; } = string.Empty;
|
|
public Guid EducationLevelHighId { get; set; }
|
|
}
|
|
}
|