From 26421f78e23afa9d58933e5868208202d39732cc Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Wed, 24 May 2023 14:25:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ReadingCalculate/IRECIST1Point1CalculateService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/IRECIST1Point1CalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/IRECIST1Point1CalculateService.cs index 9dba23312..939ece680 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/IRECIST1Point1CalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/IRECIST1Point1CalculateService.cs @@ -1831,7 +1831,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate /// { /// 非靶病灶疗效为 iCPD /// } - /// else if (任一非靶病灶状态评估为“显著增大(iUPD)”) + /// else if (满足RECIST1.1的PD标准 && 任一非靶病灶状态评估为“显著增大(iUPD)”) /// { /// 非靶病灶疗效为 iUPD /// } @@ -1917,8 +1917,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate // 非靶病灶疗效为 iCPD result = NoTargetAssessment.iCPD; } - // else if ( 任一非靶病灶状态评估为“显著增大(iUPD)”) - else if ( data.ExistiUPD) + // else if (满足RECIST1.1的PD标准 && 任一非靶病灶状态评估为“显著增大(iUPD)”) + else if (data.RECISTPD && data.ExistiUPD) { // 非靶病灶疗效为 iUPD result = NoTargetAssessment.iUPD;