อัพโหลดเอกสารสร้างรอบสมัคร
This commit is contained in:
parent
9f115e3c72
commit
c986fc1500
13 changed files with 2278 additions and 315 deletions
|
|
@ -4,10 +4,10 @@
|
|||
{
|
||||
public string? Id { get; set; }
|
||||
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
public string? FileName { get; set; } = string.Empty;
|
||||
|
||||
public string FileType { get; set; } = string.Empty;
|
||||
public string? FileType { get; set; } = string.Empty;
|
||||
|
||||
public int FileSize { get; set; }
|
||||
public int? FileSize { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
35
Response/PeriodExamCandidateResponseItem.cs
Normal file
35
Response/PeriodExamCandidateResponseItem.cs
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
|
||||
using BMA.EHR.Recurit.Exam.Service.Responses.Document;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class PeriodExamCandidateResponseItem
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public bool CheckDocument { get; set; }
|
||||
public bool CheckDisability { get; set; }
|
||||
public int? Round { get; set; }
|
||||
public int? Year { get; set; }
|
||||
public float? Fee { get; set; }
|
||||
public DateTime RegisterStartDate { get; set; }
|
||||
public DateTime RegisterEndDate { get; set; }
|
||||
public DateTime PaymentStartDate { get; set; }
|
||||
public DateTime PaymentEndDate { get; set; }
|
||||
public DateTime AnnouncementStartDate { get; set; }
|
||||
public DateTime AnnouncementEndDate { get; set; }
|
||||
public Guid? OrganizationCodeId { get; set; }
|
||||
public string? OrganizationCodeName { get; set; }
|
||||
public Guid? OrganizationId { get; set; }
|
||||
public string? OrganizationName { get; set; }
|
||||
public string? PaymentKrungThai { get; set; }
|
||||
public string? Detail { get; set; }
|
||||
public string? Note { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public bool SetSeat { 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>();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue