From 1e323f7498827fc1fcbbd65540c260104e445ab9 Mon Sep 17 00:00:00 2001 From: panshuling321 Date: Fri, 22 Apr 2022 13:55:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BF=90=E8=90=A5=E5=95=86ID?= =?UTF-8?q?=E7=9A=84=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/XhpcClearingHistoryOrderController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xhpc-modules/xhpc-activity/src/main/java/com/xhpc/activity/controller/XhpcClearingHistoryOrderController.java b/xhpc-modules/xhpc-activity/src/main/java/com/xhpc/activity/controller/XhpcClearingHistoryOrderController.java index 7ce8fee8..fd39d121 100644 --- a/xhpc-modules/xhpc-activity/src/main/java/com/xhpc/activity/controller/XhpcClearingHistoryOrderController.java +++ b/xhpc-modules/xhpc-activity/src/main/java/com/xhpc/activity/controller/XhpcClearingHistoryOrderController.java @@ -104,7 +104,7 @@ public class XhpcClearingHistoryOrderController extends BaseController { }else { params.put("operatorId", operatorId); } - if(StringUtils.isEmpty(params.get("operatorId").toString())){ + if(params.get("operatorId") == null){ throw new CustomException("缺少运营商ID"); } return getDataTable(orderService.getOrderPage(params)); @@ -123,7 +123,7 @@ public class XhpcClearingHistoryOrderController extends BaseController { params.put("operatorId", operatorId); } - if(StringUtils.isEmpty(params.get("operatorId").toString())){ + if(params.get("operatorId") == null){ throw new CustomException("缺少运营商ID"); }