api ข้อมูลประวัติการศึกษา

This commit is contained in:
Harid Promsri (Bright) 2023-07-06 13:55:46 +07:00
parent 85bc0fd359
commit 3d1ff7ee72
2 changed files with 88 additions and 3 deletions

View file

@ -5,7 +5,23 @@ namespace BMA.EHR.Placement.Service.Requests
{
public class PersonEducationRequest
{
public string Name { get; set; }
public bool Value { get; set; }
//public string Name { get; set; }
//public bool Value { get; set; }
public Guid? Id { get; set; }
public Guid? EducationLevelId { get; set; }
public Guid? PositionPathId { get; set; }
public string Institute { get; set; }
public string Degree { get; set; }
public string Field { get; set; }
public string Gpa { get; set; }
public string Country { get; set; }
public string Duration { get; set; }
public int DurationYear { get; set; }
public string Other { get; set; }
public string FundName { get; set; }
public DateTime FinishDate { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
}
}
}