This commit is contained in:
he
2023-05-24 14:25:58 +08:00
parent 22d3d542ae
commit 26421f78e2
@@ -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;