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;