From 5725e684c0f249cc85f5320cdb75be2181d5a248 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Mon, 29 Dec 2025 13:42:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/Dto/ReadingImageTaskViewModel.cs | 4 ++++ .../ReadingCalculate/General/ReadingCalculateService.cs | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index d7b052aba..32fcbff68 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -506,6 +506,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public CriterionType CriterionType { get; set; } } + public class GetReportsChartSummaryOutDto + { + } + public class GetReportsChartDataInDto { public Guid VisitTaskId { get; set; } diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs index 242cfe12f..c3ed1f835 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs @@ -432,8 +432,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate /// /// /// - public async Task GetReportsChartSummary(GetReportsChartSummaryInDto inDto) + public async Task GetReportsChartSummary(GetReportsChartSummaryInDto inDto) { + var result= new GetReportsChartSummaryOutDto(); var r1Data = await GetData(new List() { Arm.SingleReadingArm, Arm.DoubleReadingArm1 }); var r2Data = await GetData(new List() { Arm.DoubleReadingArm2 }); async Task GetData(List arms) @@ -457,6 +458,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate return data; } + return result; + } ///