From 57323bc3f3731b12f32b61b1d4891b30c1f958fe Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Wed, 9 Nov 2022 11:50:23 +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 --- .../Reading/ReadingImageTask/ReadingImageTaskService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 5e9953b2e..c3ab35344 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1125,7 +1125,7 @@ namespace IRaCIS.Application.Services if (currentSubject == null) { - throw new BusinessValidationFailedException("任务都已经完成"); + throw new BusinessValidationFailedException("当前受试者此次阅片任务已全部完成!"); } task = currentSubject.UnReadTaskList.Select(x => new GetReadingTaskDto() @@ -1160,7 +1160,7 @@ namespace IRaCIS.Application.Services }).FirstOrDefaultAsync(); if (task == null) { - throw new BusinessValidationFailedException("任务都已经完成"); + throw new BusinessValidationFailedException("当前受试者此次阅片任务已全部完成!"); } }