Compare commits
No commits in common. "51cfadbc77abc56555aa7faa5924370a7a876aaa" and "4050d7e4a37c578908e8dfb93f7cd26e0d37563d" have entirely different histories.
51cfadbc77
...
4050d7e4a3
|
@ -1810,13 +1810,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
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; }
|
||||
|
||||
|
||||
|
||||
|
@ -1826,13 +1821,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public class GetTrialCriterionJudgeQuestionListOutDto
|
||||
{
|
||||
public Guid ReadingQuestionTrialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 裁判百分比或绝对值的相差值
|
||||
/// </summary>
|
||||
public decimal? JudgeDifferenceValue { get; set; }
|
||||
|
||||
public string QuestionName { get; set; }
|
||||
|
||||
public string QuestionName { get; set; }
|
||||
|
||||
|
||||
public string PageName { get; set; }
|
||||
|
|
|
@ -46,8 +46,7 @@ namespace IRaCIS.Application.Services
|
|||
QuestionGenre=x.QuestionGenre,
|
||||
DictionaryCode=x.DictionaryCode,
|
||||
JudgeType = x.JudgeType,
|
||||
ReadingQuestionTrialId = x.Id,
|
||||
JudgeDifferenceValue= x.JudgeDifferenceValue
|
||||
ReadingQuestionTrialId = x.Id
|
||||
}).ToListAsync();
|
||||
|
||||
|
||||
|
@ -71,9 +70,7 @@ namespace IRaCIS.Application.Services
|
|||
{
|
||||
AnswerGroup = JsonConvert.SerializeObject(inDto.AnswerGroup),
|
||||
AnswerCombination = JsonConvert.SerializeObject(inDto.AnswerCombination),
|
||||
JudgeDifferenceValue= inDto.JudgeDifferenceValue,
|
||||
|
||||
JudgeType = inDto.JudgeType,
|
||||
JudgeType = inDto.JudgeType,
|
||||
});
|
||||
|
||||
var result = await _readingQuestionTrialRepository.SaveChangesAsync();
|
||||
|
|
|
@ -2571,17 +2571,12 @@ public enum PET5PSScore
|
|||
/// </summary>
|
||||
AnswerCombination = 3,
|
||||
|
||||
/// <summary>
|
||||
/// 相差绝对值
|
||||
/// </summary>
|
||||
DifferenceAbsoluteValue = 4,
|
||||
/// <summary>
|
||||
/// 不计算
|
||||
/// </summary>
|
||||
NotCalculate=4,
|
||||
|
||||
/// <summary>
|
||||
/// 相差百分比
|
||||
/// </summary>
|
||||
PercentageDifference = 5,
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -134,11 +134,6 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public JudgeTypeEnum JudgeType { get; set; } = JudgeTypeEnum.AnswerDisaffinity;
|
||||
|
||||
/// <summary>
|
||||
/// 裁判百分比或绝对值的相差值
|
||||
/// </summary>
|
||||
public decimal? JudgeDifferenceValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue