Merge branch 'Test_IRC_Net10' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net10
continuous-integration/drone/push Build is running Details

Test_IRC_Net10
hang 2026-08-13 10:04:20 +08:00
commit 81f0d108f5
2 changed files with 4 additions and 0 deletions

View File

@ -2490,6 +2490,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class GetJudgeFormOutDto public class GetJudgeFormOutDto
{ {
public string JudgeResultRemark { get; set; } = string.Empty;
public List<string> JudgeResultImagePathList { get; set; } = new List<string>();
public List<JudgeFormQuestionDto> QuestionList { get; set; } = new List<JudgeFormQuestionDto>(); public List<JudgeFormQuestionDto> QuestionList { get; set; } = new List<JudgeFormQuestionDto>();
} }

View File

@ -180,6 +180,8 @@ namespace IRaCIS.Core.Application.Service
return new GetJudgeFormOutDto return new GetJudgeFormOutDto
{ {
JudgeResultRemark = taskInfo.JudgeResultRemark,
JudgeResultImagePathList = taskInfo.JudgeResultImagePathList,
QuestionList = questionList.Select(x => new JudgeFormQuestionDto QuestionList = questionList.Select(x => new JudgeFormQuestionDto
{ {
ReadingQuestionId = x.Id, ReadingQuestionId = x.Id,