裁判的默认值
parent
14b1a62a1f
commit
5d49a0c9b9
|
@ -2503,7 +2503,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 答案分组
|
/// 答案分组
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string AnswerGroup { get; set; } = String.Empty;
|
public string AnswerGroup { get; set; } ="[]";
|
||||||
|
|
||||||
|
public decimal? JudgeDifferenceValue { get; set; } = 0;
|
||||||
|
|
||||||
|
public string AnswerCombination { get; set; } = "[]";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 类型
|
/// 类型
|
||||||
|
|
|
@ -1199,6 +1199,9 @@ 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();
|
||||||
|
|
Loading…
Reference in New Issue