问题修改
parent
adab66172d
commit
01e047f639
|
@ -1810,6 +1810,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public List<string> AnswerGroup { get; set; }
|
public List<string> AnswerGroup { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 裁判百分比或绝对值的相差值
|
||||||
|
/// </summary>
|
||||||
|
public decimal? JudgeDifferenceValue { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public List<AnswerCombinationDto> AnswerCombination { get; set; }
|
public List<AnswerCombinationDto> AnswerCombination { get; set; }
|
||||||
|
|
||||||
|
@ -1822,6 +1827,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
{
|
{
|
||||||
public Guid ReadingQuestionTrialId { get; set; }
|
public Guid ReadingQuestionTrialId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 裁判百分比或绝对值的相差值
|
||||||
|
/// </summary>
|
||||||
|
public decimal? JudgeDifferenceValue { get; set; }
|
||||||
|
|
||||||
public string QuestionName { get; set; }
|
public string QuestionName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,8 @@ namespace IRaCIS.Application.Services
|
||||||
QuestionGenre=x.QuestionGenre,
|
QuestionGenre=x.QuestionGenre,
|
||||||
DictionaryCode=x.DictionaryCode,
|
DictionaryCode=x.DictionaryCode,
|
||||||
JudgeType = x.JudgeType,
|
JudgeType = x.JudgeType,
|
||||||
ReadingQuestionTrialId = x.Id
|
ReadingQuestionTrialId = x.Id,
|
||||||
|
JudgeDifferenceValue= x.JudgeDifferenceValue
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
|
||||||
|
|
||||||
|
@ -70,6 +71,8 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
AnswerGroup = JsonConvert.SerializeObject(inDto.AnswerGroup),
|
AnswerGroup = JsonConvert.SerializeObject(inDto.AnswerGroup),
|
||||||
AnswerCombination = JsonConvert.SerializeObject(inDto.AnswerCombination),
|
AnswerCombination = JsonConvert.SerializeObject(inDto.AnswerCombination),
|
||||||
|
JudgeDifferenceValue= inDto.JudgeDifferenceValue,
|
||||||
|
|
||||||
JudgeType = inDto.JudgeType,
|
JudgeType = inDto.JudgeType,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -2572,9 +2572,14 @@ public enum PET5PSScore
|
||||||
AnswerCombination = 3,
|
AnswerCombination = 3,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 不计算
|
/// 相差绝对值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NotCalculate=4,
|
DifferenceAbsoluteValue = 4,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 相差百分比
|
||||||
|
/// </summary>
|
||||||
|
PercentageDifference = 5,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -134,6 +134,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public JudgeTypeEnum JudgeType { get; set; } = JudgeTypeEnum.AnswerDisaffinity;
|
public JudgeTypeEnum JudgeType { get; set; } = JudgeTypeEnum.AnswerDisaffinity;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 裁判百分比或绝对值的相差值
|
||||||
|
/// </summary>
|
||||||
|
public decimal? JudgeDifferenceValue { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 创建人
|
/// 创建人
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue