Uat_Study
he 2022-09-21 18:03:39 +08:00
parent d2662fd1e5
commit d14e035e19
1 changed files with 2 additions and 2 deletions

View File

@ -564,7 +564,7 @@ namespace IRaCIS.Core.Application.Service
/// <returns></returns> /// <returns></returns>
public async Task<string> GetIsLymphTarget(ReadingCalculateDto inDto) public async Task<string> GetIsLymphTarget(ReadingCalculateDto inDto)
{ {
var result = string.Empty; var result = IsLymph.No.GetEnumInt();
var tableQuestion = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.TargetLesion).SelectMany(x => x.TableRowInfoList).ToList(); var tableQuestion = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.TargetLesion).SelectMany(x => x.TableRowInfoList).ToList();
foreach (var item in tableQuestion) foreach (var item in tableQuestion)
@ -575,7 +575,7 @@ namespace IRaCIS.Core.Application.Service
} }
} }
result = IsLymph.No.GetEnumInt();
return result; return result;
} }