This commit is contained in:
he
2022-11-07 16:30:59 +08:00
parent e3f7250d12
commit 6570406834
4 changed files with 9 additions and 4 deletions
@@ -822,6 +822,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string TypeValue { get; set; }
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary>
/// 类型
/// </summary>
@@ -126,7 +126,8 @@ namespace IRaCIS.Application.Services
JudgeType = y.ReadingQuestionTrial.JudgeType,
Type = y.ReadingQuestionTrial.Type,
TypeValue = y.ReadingQuestionTrial.TypeValue,
IsJudgeQuestion=y.ReadingQuestionTrial.IsJudgeQuestion,
ValueType = y.ReadingQuestionTrial.ValueType,
IsJudgeQuestion =y.ReadingQuestionTrial.IsJudgeQuestion,
Answer = y.Answer
}).ToList()
}).ToListAsync();
@@ -162,6 +163,7 @@ namespace IRaCIS.Application.Services
IsJudgeQuestion=lr.question.IsJudgeQuestion,
JudgeType = lr.question.JudgeType,
TypeValue = lr.question.TypeValue,
ValueType= lr.question.ValueType,
}).ToList();