Uat_Study
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> /// </summary>
public string TypeValue { get; set; } public string TypeValue { get; set; }
/// <summary>
/// 数值类型
/// </summary>
public ValueOfType? ValueType { get; set; }
/// <summary> /// <summary>
/// 类型 /// 类型
/// </summary> /// </summary>

View File

@ -126,7 +126,8 @@ namespace IRaCIS.Application.Services
JudgeType = y.ReadingQuestionTrial.JudgeType, JudgeType = y.ReadingQuestionTrial.JudgeType,
Type = y.ReadingQuestionTrial.Type, Type = y.ReadingQuestionTrial.Type,
TypeValue = y.ReadingQuestionTrial.TypeValue, TypeValue = y.ReadingQuestionTrial.TypeValue,
IsJudgeQuestion=y.ReadingQuestionTrial.IsJudgeQuestion, ValueType = y.ReadingQuestionTrial.ValueType,
IsJudgeQuestion =y.ReadingQuestionTrial.IsJudgeQuestion,
Answer = y.Answer Answer = y.Answer
}).ToList() }).ToList()
}).ToListAsync(); }).ToListAsync();
@ -162,6 +163,7 @@ namespace IRaCIS.Application.Services
IsJudgeQuestion=lr.question.IsJudgeQuestion, IsJudgeQuestion=lr.question.IsJudgeQuestion,
JudgeType = lr.question.JudgeType, JudgeType = lr.question.JudgeType,
TypeValue = lr.question.TypeValue, TypeValue = lr.question.TypeValue,
ValueType= lr.question.ValueType,
}).ToList(); }).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 await _readingTaskQuestionAnswerRepository.BatchUpdateNoTrackingAsync(x => x.VisitTaskId == lastTask.VisitTaskId && x.ReadingQuestionTrialId == visitForTumorEvaluationQuestionId,x=> new ReadingTaskQuestionAnswer
{ {
Answer= VisitTumorEvaluation.PD.GetEnumInt(), Answer= VisitTumorEvaluation.PD.GetEnumInt(),
}); });
} }

View File

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