api ปฏิเสธจ่ายเงิน get ไฟล์สมัครสอบ
This commit is contained in:
parent
9486ad160d
commit
5abeada4a6
32 changed files with 7513 additions and 394 deletions
10
Response/AboutPageContentResponseItem.cs
Normal file
10
Response/AboutPageContentResponseItem.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
using BMA.EHR.Recurit.Exam.Service.Responses.Document;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class AboutPageContentResponseItem
|
||||
{
|
||||
public string? Content { get; set; }
|
||||
}
|
||||
}
|
||||
22
Response/CMSExamResponseItem.cs
Normal file
22
Response/CMSExamResponseItem.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
using BMA.EHR.Recurit.Exam.Service.Responses.Document;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class CMSExamResponseItem
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public string? Category { get; set; }
|
||||
public string? Category_id { get; set; }
|
||||
public DateTime? Start { get; set; }
|
||||
public DateTime? End { get; set; }
|
||||
public DateTime? Exam_date { get; set; }
|
||||
public DateTime? Announcement_date { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? Detail { get; set; }
|
||||
public string? Image { get; set; }
|
||||
public List<HomePageLinkResponseItem>? Images { get; set; }
|
||||
public List<HomePageLinkResponseItem>? Files { get; set; }
|
||||
public List<HomePageLinkResponseItem>? Positions { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -21,5 +21,6 @@ namespace BMA.EHR.Recurit.Exam.Service.Response
|
|||
public string? Telephone { get; set; }
|
||||
public string? MobilePhone { get; set; }
|
||||
public string? Knowledge { get; set; }
|
||||
public string? ProfileImg { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
11
Response/CandidateStatusResponse.cs
Normal file
11
Response/CandidateStatusResponse.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
using System.Net;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class CandidateStatusResponse
|
||||
{
|
||||
public string? Status { get; set; }
|
||||
|
||||
public string? RejectDetail { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -9,5 +9,7 @@
|
|||
public string? FileType { get; set; } = string.Empty;
|
||||
|
||||
public int? FileSize { get; set; }
|
||||
|
||||
public string? Detail { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
11
Response/HomePageContentResponseItem.cs
Normal file
11
Response/HomePageContentResponseItem.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
using BMA.EHR.Recurit.Exam.Service.Responses.Document;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class HomePageContentResponseItem
|
||||
{
|
||||
public string? Content { get; set; }
|
||||
public string? Image { get; set; }
|
||||
}
|
||||
}
|
||||
22
Response/HomePageResponseItem.cs
Normal file
22
Response/HomePageResponseItem.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
using BMA.EHR.Recurit.Exam.Service.Responses.Document;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class HomePageResponseItem
|
||||
{
|
||||
public string? Logo_url { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? Subtitle { get; set; }
|
||||
public string? Supervised { get; set; }
|
||||
public string? Telephone { get; set; }
|
||||
public string? Address { get; set; }
|
||||
public List<HomePageLinkResponseItem>? Divisions { get; set; }
|
||||
public List<HomePageLinkResponseItem>? Institutes { get; set; }
|
||||
}
|
||||
public class HomePageLinkResponseItem
|
||||
{
|
||||
public string? Title { get; set; }
|
||||
public string? Url { get; set; }
|
||||
}
|
||||
}
|
||||
11
Response/PaymentImgResponse.cs
Normal file
11
Response/PaymentImgResponse.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
using System.Net;
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class PaymentImgResponse
|
||||
{
|
||||
public string? PaymentImg { get; set; }
|
||||
|
||||
public string? RejectDetail { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -18,6 +18,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Response
|
|||
public DateTime PaymentEndDate { get; set; }
|
||||
public DateTime AnnouncementStartDate { get; set; }
|
||||
public DateTime AnnouncementEndDate { get; set; }
|
||||
public DateTime ExamDate { get; set; }
|
||||
public Guid? OrganizationCodeId { get; set; }
|
||||
public string? OrganizationCodeName { get; set; }
|
||||
public Guid? OrganizationId { get; set; }
|
||||
|
|
@ -31,5 +32,6 @@ namespace BMA.EHR.Recurit.Exam.Service.Response
|
|||
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>();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue