Test.EIImageViewer
parent
e3f7250d12
commit
6570406834
|
@ -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>
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
|
@ -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(),
|
||||
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// 百分数
|
||||
/// </summary>
|
||||
Percentage = 2
|
||||
Percentage = 2,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in New Issue