Uat_Study
he 2022-09-30 11:00:47 +08:00
parent 79af3792a7
commit ab9bb015cd
3 changed files with 51 additions and 4 deletions

View File

@ -1820,6 +1820,21 @@
当新答案为空的时候 是否是有原数据 当新答案为空的时候 是否是有原数据
</summary> </summary>
</member> </member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GlobalQuestionInfo.QuestionType">
<summary>
问题类型
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GlobalQuestionInfo.DictionaryCode">
<summary>
字典code
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GlobalQuestionInfo.QuestionGenre">
<summary>
问题类型
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GlobalQuestionInfo.AnswerGroup"> <member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GlobalQuestionInfo.AnswerGroup">
<summary> <summary>
答案分组 答案分组
@ -3106,6 +3121,11 @@
排序 排序
</summary> </summary>
</member> </member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionCriterionSystemInDto.CriterionType">
<summary>
标准类型
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionCriterionSystemInDto.IsCompleteConfig"> <member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionCriterionSystemInDto.IsCompleteConfig">
<summary> <summary>
是否完成配置 是否完成配置
@ -3751,6 +3771,11 @@
是否启用 是否启用
</summary> </summary>
</member> </member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionCriterionSystemView.CriterionType">
<summary>
标准类型
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionCriterionSystemView.IsCompleteConfig"> <member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionCriterionSystemView.IsCompleteConfig">
<summary> <summary>
是否完成配置 是否完成配置

View File

@ -681,13 +681,28 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string Answer { get; set; } public string Answer { get; set; }
/// <summary>
/// 问题类型
/// </summary>
public QuestionType? QuestionType { get; set; }
/// <summary> /// <summary>
/// 答案分组 /// 字典code
/// </summary> /// </summary>
public string AnswerGroup { get; set; } = string.Empty; public string DictionaryCode { get; set; } = string.Empty;
/// <summary>
/// 问题类型
/// </summary>
public TableQuestionType? QuestionGenre { get; set; }
/// <summary>
/// 答案分组
/// </summary>
public string AnswerGroup { get; set; } = string.Empty;
/// <summary> /// <summary>
/// 答案组合 /// 答案组合

View File

@ -1120,6 +1120,10 @@ namespace IRaCIS.Application.Services
QuestionId = y.ReadingQuestionTrialId, QuestionId = y.ReadingQuestionTrialId,
QuestionName = y.ReadingQuestionTrial.QuestionName, QuestionName = y.ReadingQuestionTrial.QuestionName,
AnswerGroup = y.ReadingQuestionTrial.AnswerGroup, AnswerGroup = y.ReadingQuestionTrial.AnswerGroup,
QuestionType=y.ReadingQuestionTrial.QuestionType,
QuestionGenre=y.ReadingQuestionTrial.QuestionGenre,
DictionaryCode=y.ReadingQuestionTrial.DictionaryCode,
AnswerCombination = y.ReadingQuestionTrial.AnswerCombination, AnswerCombination = y.ReadingQuestionTrial.AnswerCombination,
JudgeType = y.ReadingQuestionTrial.JudgeType, JudgeType = y.ReadingQuestionTrial.JudgeType,
@ -1150,6 +1154,9 @@ namespace IRaCIS.Application.Services
IsHaveChange = lr.global == null ? false : lr.global.Any(), IsHaveChange = lr.global == null ? false : lr.global.Any(),
QuestionId = lr.question.QuestionId, QuestionId = lr.question.QuestionId,
QuestionName = lr.question.QuestionName, QuestionName = lr.question.QuestionName,
QuestionType = lr.question.QuestionType,
QuestionGenre = lr.question.QuestionGenre,
DictionaryCode = lr.question.DictionaryCode,
Type = lr.question.Type, Type = lr.question.Type,
GlobalAnswerType=GlobalAnswerType.Question, GlobalAnswerType=GlobalAnswerType.Question,
AnswerGroup = lr.question.AnswerGroup, AnswerGroup = lr.question.AnswerGroup,