From d3b9f8f7f9b4fafe9407c2c4dde40ab9252fcc68 Mon Sep 17 00:00:00 2001 From: Lemon Date: Thu, 6 Jun 2024 08:51:46 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E4=BF=AE=E6=94=B9=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/jsowell/thirdparty/common/CommonService.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/CommonService.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/CommonService.java index 9f2e8cca5..c85641be6 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/CommonService.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/common/CommonService.java @@ -518,7 +518,9 @@ public class CommonService { ninaXiaPlatformService.notificationChargeOrderInfo(orderBasicInfo.getOrderCode()); } if (StringUtils.equals(ThirdPlatformTypeEnum.DIAN_XING_PLATFORM.getTypeCode(), thirdPartyType)) { - dianXingPlatformService.notificationChargeOrderInfo(orderBasicInfo.getOrderCode()); + log.info("点行平台推送订单数据 params:{}", orderBasicInfo); + String result = dianXingPlatformService.notificationChargeOrderInfo(orderBasicInfo.getOrderCode()); + log.info("点行平台推送订单数据 result:{}", result); } } }