From be5cfdbc8541e7e83212a196b37e5480291a4de4 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Tue, 2 Aug 2022 10:53:04 +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/Allocation/DTO/VisitTaskViewModel.cs | 7 +++++++ .../Service/Allocation/VisitTaskService.cs | 1 + 2 files changed, 8 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs b/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs index 61483d8d3..83bb4b58d 100644 --- a/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs @@ -187,6 +187,13 @@ namespace IRaCIS.Core.Application.ViewModel public Guid Id { get; set; } public ReadingCategory ReadingCategory { get; set; } + + + /// + /// 是否是一致性分析产生 + /// + public bool IsAnalysisCreate { get; set; } + public bool IsUrgent { get; set; } public decimal VisitNum { get; set; } diff --git a/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs b/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs index b9634d7cb..277ecd464 100644 --- a/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs +++ b/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs @@ -1123,6 +1123,7 @@ namespace IRaCIS.Core.Application.Service.Allocation VisistId = u.SourceSubjectVisitId, SuggesteFinishedTime = u.SuggesteFinishedTime, ReadingCategory = u.ReadingCategory, + IsAnalysisCreate=u.IsAnalysisCreate, }).ToList(), }).Where(x => x.UnReadTaskCount > 0).OrderBy(x => x.SubjectId);