From a2c768d0ab2407b2ccc24aa661e9294dfd179c87 Mon Sep 17 00:00:00 2001 From: dxfeng Date: Thu, 23 Jun 2022 15:42:32 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E7=BB=87=E4=BA=BA=E4=BA=8B=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E3=80=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/engine/organization/service/impl/CompServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/engine/organization/service/impl/CompServiceImpl.java b/src/com/engine/organization/service/impl/CompServiceImpl.java index a52b7331..5157e65f 100644 --- a/src/com/engine/organization/service/impl/CompServiceImpl.java +++ b/src/com/engine/organization/service/impl/CompServiceImpl.java @@ -141,7 +141,7 @@ public class CompServiceImpl extends Service implements CompService { // 判断是否开启自动编号 compNo = repeatDetermine(compNo); params.put("comp_no", compNo); - if (StringUtils.isBlank((String) params.get("show_order"))) { + if (StringUtils.isBlank(params.get("show_order").toString())) { int maxShowOrder = getCompMapper().getMaxShowOrder(); params.put("show_order", maxShowOrder + 1); }