修改readingtool默认值

Uat_Study
he 2022-12-16 17:29:23 +08:00 committed by {872297557@qq.com}
parent c64e4cbe01
commit 7888387e28
1 changed files with 4 additions and 1 deletions

View File

@ -147,7 +147,10 @@ namespace IRaCIS.Core.Application
GetTrialReadingInfoOutDto trialInfo= await _readingQuestionCriterionTrialRepository.Where(x=>x.Id==inDto.TrialReadingCriterionId).ProjectTo<GetTrialReadingInfoOutDto>(_mapper.ConfigurationProvider).FirstNotNullAsync();
if (trialInfo.ReadingTool == null)
{
trialInfo.ReadingTool = ReadingTool.Dicom;
}
return trialInfo;
}