diff --git a/Response/CMSExamResponseItem.cs b/Response/CMSExamResponseItem.cs index fd4e55f..1395b99 100644 --- a/Response/CMSExamResponseItem.cs +++ b/Response/CMSExamResponseItem.cs @@ -24,6 +24,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Response public string? EditorCondition { get; set; } public string? EditorConfirm { get; set; } public string? Image { get; set; } + public int? Year { get; set; } + public int? Round { get; set; } public List? Images { get; set; } public List? Files { get; set; } public List? Positions { get; set; } diff --git a/Services/CMSCandidateService.cs b/Services/CMSCandidateService.cs index 6279753..3c424b8 100644 --- a/Services/CMSCandidateService.cs +++ b/Services/CMSCandidateService.cs @@ -464,6 +464,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Services Payment_startDate = x.PaymentStartDate == null ? null : x.PaymentStartDate.Value.ToString("yyyy-MM-dd"), Payment_endDate = x.PaymentEndDate == null || x.PaymentEndDate == x.PaymentStartDate ? null : x.PaymentEndDate.Value.ToString("yyyy-MM-dd"), Title = x.Name, + Year = x.Year, + Round = x.Round, Detail = x.Detail, EditorCondition = x.EditorCondition, EditorConfirm = x.EditorConfirm,