fix report kk1/kp7

This commit is contained in:
Bright 2024-09-05 10:50:58 +07:00
parent 7bfa5b00d6
commit a9eb8d993c
3 changed files with 686 additions and 357 deletions

View file

@ -16,10 +16,17 @@ namespace BMA.EHR.Report.Service.Responses
public string? DateRetire { get; set; }
public string? RegistrationAddress { get; set; }
public string? SalaryAmount { get; set; }
public List<dynamic> Education { get; set; }
public List<Educations> Education { get; set; }
public string? AppointText { get; set; }
public string? SalaryDate { get; set; }
public string? PositionName { get; set; }
public string? OcFullPath { get; set; }
}
public class Educations
{
public string? Institute { get; set; }
public string? Date { get; set; }
public string? Degree { get; set; }
}
}