From e6d2f13b7e31357483d2ef81ac460474bfcfa384 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Mon, 14 Jul 2025 15:09:48 +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 --- .../ReadingImageTaskService.cs | 23 ++++--------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index cbc12c959..d645c98f5 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -239,21 +239,10 @@ namespace IRaCIS.Core.Application.Service { await _readingTaskQuestionMarkRepository.UpdatePartialFromQueryAsync(x => x.Id == originalMarkInfo.Id, x => new ReadingTaskQuestionMark() { - InstanceId = null, - SeriesId = null, - StudyId = null, - MarkTool = string.Empty, - // PicturePath = string.Empty, 稽查需要显示截图 - NumberOfFrames = null, - MeasureData = string.Empty, - OrderMarkName = string.Empty, - OtherInstanceId = null, - OtherSeriesId = null, - OtherStudyId = null, - OtherMarkTool = string.Empty, - OtherPicturePath = string.Empty, - OtherNumberOfFrames = null, - OtherMeasureData = string.Empty, + QuestionId=null, + TableQuestionId=null, + RowId=null, + RowIndex=null, }); } @@ -2148,10 +2137,6 @@ namespace IRaCIS.Core.Application.Service await _readingTaskQuestionMarkRepository.UpdatePartialFromQueryAsync(x => x.Id == questionMark.Id, x => new ReadingTaskQuestionMark() { QuestionId = null, - MeasureData = string.Empty, - PicturePath = string.Empty, - OtherMeasureData = string.Empty, - OtherPicturePath = string.Empty, }); } }