From a5d2f04f1f0f4ab77d318fafc97c7baa18085748 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Mon, 29 Aug 2022 09:49:54 +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/ReadingQuestionService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs index 2c5db1cdb..7e369804a 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs @@ -476,7 +476,8 @@ namespace IRaCIS.Application.Services newData.ReadingQuestionSystemId = x.ReadingQuestionSystemId; question = newData.Clone(); } - + // 最大问题数 + question.MaxQuestionCount= x.MaxQuestionCount; if (question.ParentId != null) { question.ParentId = copyNewQuestionList.Where(y => x.ParentId == y.ReadingQuestionSystemId).Select(y => y.Id).FirstOrDefault();