获取裁判表单 返回备注和截图的信息

Uat_IRC_Net10
he 2026-08-13 09:51:42 +08:00
parent c714a81edf
commit 416793018f
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,