Uat_Study
he 2022-06-16 17:06:47 +08:00
parent a759cf6d2a
commit 36c1a3b1c0
2 changed files with 4 additions and 1 deletions

View File

@ -154,7 +154,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public string Remark { get; set; } public string Remark { get; set; }
/// <summary> /// <summary>
/// 类型值 /// 类型值
/// </summary> /// </summary>
@ -275,6 +274,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 类型值 /// 类型值
/// </summary> /// </summary>
public string TypeValue { get; set; } public string TypeValue { get; set; }
public string GroupName { get; set; }
} }
public class SetTrialQuestionIsIsJudgeQuestionInDto public class SetTrialQuestionIsIsJudgeQuestionInDto

View File

@ -218,6 +218,7 @@ namespace IRaCIS.Application.Services
QuestionId = x.Id, QuestionId = x.Id,
QuestionName = x.QuestionName, QuestionName = x.QuestionName,
TypeValue=x.TypeValue, TypeValue=x.TypeValue,
GroupName = x.GroupName,
}).ToListAsync(); }).ToListAsync();
return questionList; return questionList;
@ -472,6 +473,7 @@ namespace IRaCIS.Application.Services
QuestionId = x.Id, QuestionId = x.Id,
QuestionName = x.QuestionName, QuestionName = x.QuestionName,
TypeValue = x.TypeValue, TypeValue = x.TypeValue,
GroupName=x.GroupName,
}).ToListAsync(); }).ToListAsync();
return questionList; return questionList;