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

@ -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; }
}
}

View 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; }
}
}

View file

@ -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; }
}
}

View 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; }
}
}

View file

@ -9,5 +9,7 @@
public string? FileType { get; set; } = string.Empty;
public int? FileSize { get; set; }
public string? Detail { get; set; }
}
}

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}

View file

@ -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>();
}
}