From bed277f899caa336b92c7f7df96ca77d27f0140e Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Tue, 17 Oct 2023 09:39:52 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../ReadingCalculate/LuganoCalculateService.cs | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs
index 5e816b314..1936d5482 100644
--- a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs
+++ b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs
@@ -517,6 +517,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
// SUVmax所在病灶
new ReadingCalculateData (){QuestionType=QuestionType.SUVmaxLesion,GetStringFun=GetSuvMaxFocus},
+
+ //获取肝脏评估
+ new ReadingCalculateData (){QuestionType=QuestionType.LiverAssessment,GetStringFun=GetLiverAssessment},
////靶病灶径线之和(SOD)
//new ReadingCalculateData (){QuestionType=QuestionType.SOD,GetDecimalNullFun=GetSODData},
@@ -1978,6 +1981,19 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
#endregion
+
+ #region 肝脏评估
+ ///
+ /// 获取肝脏评估
+ ///
+ ///
+ ///
+ public async Task GetLiverAssessment(ReadingCalculateDto inDto)
+ {
+ return inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.LiverState).Select(x => x.Answer).FirstIsNullReturnEmpty();
+ }
+ #endregion
+
#region SuvMax所在病灶
///