From 416793018f5c01b34f939e17292b4b2e31c1afb8 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 13 Aug 2026 09:51:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E8=A3=81=E5=88=A4=E8=A1=A8?= =?UTF-8?q?=E5=8D=95=20=E8=BF=94=E5=9B=9E=E5=A4=87=E6=B3=A8=E5=92=8C?= =?UTF-8?q?=E6=88=AA=E5=9B=BE=E7=9A=84=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/Dto/ReadingImageTaskViewModel.cs | 2 ++ .../Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 34b68eac9..ec743870b 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -2490,6 +2490,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public class GetJudgeFormOutDto { + public string JudgeResultRemark { get; set; } = string.Empty; + public List JudgeResultImagePathList { get; set; } = new List(); public List QuestionList { get; set; } = new List(); } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs index 3fcac31fb..cd8c6a9be 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs @@ -180,6 +180,8 @@ namespace IRaCIS.Core.Application.Service return new GetJudgeFormOutDto { + JudgeResultRemark = taskInfo.JudgeResultRemark, + JudgeResultImagePathList = taskInfo.JudgeResultImagePathList, QuestionList = questionList.Select(x => new JudgeFormQuestionDto { ReadingQuestionId = x.Id,