api ปฏิเสธจ่ายเงิน get ไฟล์สมัครสอบ

This commit is contained in:
Kittapath 2023-04-09 04:22:04 +07:00
parent 9486ad160d
commit 5abeada4a6
32 changed files with 7513 additions and 394 deletions

View file

@ -16,6 +16,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
public DateTime PaymentEndDate { get; set; } = DateTime.Now.Date;
public DateTime AnnouncementStartDate { get; set; } = DateTime.Now.Date;
public DateTime AnnouncementEndDate { get; set; } = DateTime.Now.Date;
public DateTime ExamDate { get; set; } = DateTime.Now.Date;
public Guid? OrganizationCodeId { get; set; }
public string? OrganizationCodeName { get; set; }
public Guid? OrganizationId { get; set; }
@ -23,6 +24,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Request
public string? PaymentKrungThai { get; set; }
public string? Detail { get; set; }
public string? Note { get; set; }
public List<FormFile>? Doc { get; set; }
public List<FormFile>? Image { get; set; }
public List<RequestBankExam> BankExam { get; set; } = new();
public List<RequestPositionExam> PositionExam { get; set; } = new();
}