Compare commits

..

No commits in common. "397a36214cbf9a63e0dc6359e20860fca178d669" and "485e1359a93dfca075ecddc2d50bde6326d4c3fd" have entirely different histories.

2 changed files with 1 additions and 8 deletions

View File

@ -2503,11 +2503,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary> /// <summary>
/// 答案分组 /// 答案分组
/// </summary> /// </summary>
public string AnswerGroup { get; set; } ="[]"; public string AnswerGroup { get; set; } = String.Empty;
public decimal? JudgeDifferenceValue { get; set; } = 0;
public string AnswerCombination { get; set; } = "[]";
/// <summary> /// <summary>
/// 类型 /// 类型

View File

@ -1199,9 +1199,6 @@ namespace IRaCIS.Core.Application.Service
x.ReadingQuestionCriterionTrialId = trialCriterion.Id; x.ReadingQuestionCriterionTrialId = trialCriterion.Id;
x.TrialId = trialCriterion.TrialId; x.TrialId = trialCriterion.TrialId;
x.AnswerGroup = "[]";
x.AnswerCombination="[]";
x.JudgeDifferenceValue = 0;
}); });
var copyNewQuestionList = newTrialQuestionList.Clone(); var copyNewQuestionList = newTrialQuestionList.Clone();
// var trialQuestionList = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrialId == trialCriterion.Id).ToListAsync(); // var trialQuestionList = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrialId == trialCriterion.Id).ToListAsync();