Uat_Study
he 2023-05-24 14:25:58 +08:00
parent 22d3d542ae
commit 26421f78e2
1 changed files with 3 additions and 3 deletions

View File

@ -1831,7 +1831,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
/// { /// {
/// 非靶病灶疗效为 iCPD /// 非靶病灶疗效为 iCPD
/// } /// }
/// else if (任一非靶病灶状态评估为“显著增大iUPD”) /// else if (满足RECIST1.1的PD标准 && 任一非靶病灶状态评估为“显著增大iUPD”)
/// { /// {
/// 非靶病灶疗效为 iUPD /// 非靶病灶疗效为 iUPD
/// } /// }
@ -1917,8 +1917,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
// 非靶病灶疗效为 iCPD // 非靶病灶疗效为 iCPD
result = NoTargetAssessment.iCPD; result = NoTargetAssessment.iCPD;
} }
// else if ( 任一非靶病灶状态评估为“显著增大iUPD”) // else if (满足RECIST1.1的PD标准 && 任一非靶病灶状态评估为“显著增大iUPD”)
else if ( data.ExistiUPD) else if (data.RECISTPD && data.ExistiUPD)
{ {
// 非靶病灶疗效为 iUPD // 非靶病灶疗效为 iUPD
result = NoTargetAssessment.iUPD; result = NoTargetAssessment.iUPD;