From 88cb7b8a1aafd994408bda1dd75f6bb6596c2c6e Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 10 Jul 2025 11:15:53 +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 | 2 ++ .../Service/Reading/ReadingImageTask/ReadingImageTaskService.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 1f034e705..9aa66c2e8 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -2368,6 +2368,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public Guid? CTSeriesId { get; set; } + public DateTime? UpdateTime { get; set; } + public List AnswerList { get; set; } } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 910225cd1..a14495e3d 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -2677,6 +2677,7 @@ namespace IRaCIS.Core.Application.Service } else { + inDto.UpdateTime = DateTime.Now; await _readingTableAnswerRowInfoRepository.UpdateFromDTOAsync(inDto);