ปรับ ui สรรหาสอบคัดเลือก

This commit is contained in:
Kittapath 2023-10-02 00:22:28 +07:00
parent c79bc39c86
commit fbef67f33a
29 changed files with 7384 additions and 666 deletions

View file

@ -35,6 +35,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
public int? ReviewPoint { get; set; }
public string? Review { get; set; }
public string? Position { get; set; }
public string? PositionLevel { get; set; }
public string? HighDegree { get; set; }
public DateTime? AnnouncementDate { get; set; }
public Guid? Id { get; set; }

View file

@ -26,6 +26,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
public bool AnnouncementExam { get; set; }
public string? Category { get; set; }
public string? Detail { get; set; }
public string? EditorCondition { get; set; }
public string? EditorConfirm { get; set; }
public string? Note { get; set; }
public List<FormFile>? Doc { get; set; }
public List<FormFile>? Image { get; set; }

View file

@ -7,6 +7,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
public Guid? Id { get; set; }
public Guid? PositionId { get; set; }
public string? PositionName { get; set; }
public Guid? PositionLevelId { get; set; }
public string? PositionLevelName { get; set; }
public bool HighDegree { get; set; }
public string? TypeId { get; set; }
public string? TypeName { get; set; }

View file

@ -8,6 +8,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
public string? Name { get; set; }
public int? Round { get; set; }
public int? Year { get; set; }
public PositionExam? Posiiton { get; set; }
public string? Position { get; set; }
public string? PositionLevel { get; set; }
}
}

View file

@ -10,6 +10,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
public bool Bank { get; set; }
public bool Payment { get; set; }
public string? Status { get; set; }
public string? EditorCondition { get; set; }
public string? EditorConfirm { get; set; }
public PositionExam? PositionExam { get; set; }
}
}