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();