เพิ่มฟอร์มชำระเงิน

This commit is contained in:
kittapath 2025-01-27 13:11:20 +07:00
parent 47d0f72f30
commit 1cfa4336fd
11 changed files with 3906 additions and 107 deletions

View file

@ -34,10 +34,17 @@ namespace BMA.EHR.Recurit.Exam.Service.Response
public string? Note { get; set; }
public bool IsActive { get; set; }
public bool SetSeat { get; set; }
public string? Remark { get; set; }
public string? CompanyCode { get; set; }
public string? CustomerName { get; set; }
public string? Reason { get; set; }
public string? RefNo1 { get; set; }
public List<Models.Candidate> Candidate { get; set; } = new List<Models.Candidate>();
public List<Models.PositionExam> PositionExam { get; set; } = new List<Models.PositionExam>();
public List<Models.BankExam> BankExam { get; set; } = new List<Models.BankExam>();
public List<FileListResponse> Documents { get; set; } = new List<FileListResponse>();
public List<FileListResponse> Images { get; set; } = new List<FileListResponse>();
public List<FileListResponse> BarCodes { get; set; } = new List<FileListResponse>();
public List<FileListResponse> QrCodes { get; set; } = new List<FileListResponse>();
}
}