From 14c2a9393fdd9e56cdac0475c54c06cb5a61ff15 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Wed, 6 Jul 2022 10:36:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/Dto/ReadingMedicalReviewDto.cs | 2 ++ .../Service/Reading/ReadingMedicalReviewService.cs | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs index ee7b035ed..869eb2c2a 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs @@ -467,6 +467,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public Arm? JudgeResultArm { get; set; } + public Guid SubjectId { get; set; } + } } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs index a98a7031f..b27baa9c4 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs @@ -95,6 +95,7 @@ namespace IRaCIS.Core.Application.Service SourceSubjectVisitId=x.SourceSubjectVisitId, JudgeVisitTaskId=x.JudgeVisitTaskId, JudgeResultArm=x.JudgeResultTask.ArmEnum, + SubjectId=x.SubjectId, }).ToListAsync(); @@ -129,6 +130,7 @@ namespace IRaCIS.Core.Application.Service TaskName = x.TaskName, SouceReadModuleId = x.SouceReadModuleId, SourceSubjectVisitId = x.SourceSubjectVisitId, + SubjectId = x.SubjectId, }).ToListAsync(); @@ -253,7 +255,6 @@ namespace IRaCIS.Core.Application.Service Questioning = inDto.Questioning, IsSendMessage = inDto.IsSendDialog && inDto.IsHaveQuestion, AuditAdviceEnum = inDto.AuditAdviceEnum, - SaveConclusionTime=DateTime.Now, });