Test.EIImageViewer
he 2022-11-07 16:30:59 +08:00
parent e3f7250d12
commit 6570406834
4 changed files with 9 additions and 4 deletions

View File

@ -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>

View File

@ -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();

View File

@ -810,8 +810,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
await _readingTaskQuestionAnswerRepository.BatchUpdateNoTrackingAsync(x => x.VisitTaskId == lastTask.VisitTaskId && x.ReadingQuestionTrialId == visitForTumorEvaluationQuestionId,x=> new ReadingTaskQuestionAnswer
{
Answer= VisitTumorEvaluation.PD.GetEnumInt(),
});
}

View File

@ -55,7 +55,7 @@ namespace IRaCIS.Core.Domain.Share
/// <summary>
/// 百分数
/// </summary>
Percentage = 2
Percentage = 2,
}
/// <summary>