From 0a46ef30a58ddfcc8ca152e65fb1281aa11476c1 Mon Sep 17 00:00:00 2001 From: liuzhaotian Date: Wed, 12 Mar 2025 10:33:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E5=8D=95=E9=9D=9E=E7=A9=BA=E5=88=A4?= =?UTF-8?q?=E6=96=AD=E9=94=99=E8=AF=AF=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cf/imes/module/executor/service/plan/PlanServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/service/plan/PlanServiceImpl.java b/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/service/plan/PlanServiceImpl.java index f0b2a66af..532d56118 100644 --- a/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/service/plan/PlanServiceImpl.java +++ b/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/service/plan/PlanServiceImpl.java @@ -994,7 +994,7 @@ public class PlanServiceImpl implements PlanService { for (Long planId : planIds) { PlanDO planDO = planMapper.selectById(planId); if(ObjectUtils.isEmpty(planDO)){ - throw exception(PLAN_NOT_DATA_EXISTS,planDO.getId()); + throw exception(PLAN_NOT_DATA_EXISTS,planId); } planDOS.add(planDO); }