From 36c1a3b1c011116a64a0cd1398cd675ed30ae716 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Thu, 16 Jun 2022 17:06:47 +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/Dto/ReadingQuestionViewModel.cs | 3 ++- .../Service/Reading/ReadingQuestionService.cs | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs index acc9e038..bfe3cae2 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs @@ -154,7 +154,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public string Remark { get; set; } - /// /// 类型值 /// @@ -275,6 +274,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// 类型值 /// public string TypeValue { get; set; } + + public string GroupName { get; set; } } public class SetTrialQuestionIsIsJudgeQuestionInDto diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs index 0e9866c0..f062a904 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs @@ -218,6 +218,7 @@ namespace IRaCIS.Application.Services QuestionId = x.Id, QuestionName = x.QuestionName, TypeValue=x.TypeValue, + GroupName = x.GroupName, }).ToListAsync(); return questionList; @@ -472,6 +473,7 @@ namespace IRaCIS.Application.Services QuestionId = x.Id, QuestionName = x.QuestionName, TypeValue = x.TypeValue, + GroupName=x.GroupName, }).ToListAsync(); return questionList;