diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java index dff0b027b..bb7c303a4 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java @@ -351,6 +351,9 @@ public class LianLianPlatformServiceImpl implements ThirdPartyPlatformService { if( MerchantUtils.isPaiHeMerchant(String.valueOf(pileStationInfo.getMerchantId()))){ stationInfo.setEquipmentOwnerID(Constants.OPERATORID_PAI_HE); } + if (MerchantUtils.isHongPeng(String.valueOf(pileStationInfo.getMerchantId()))) { + stationInfo.setEquipmentOwnerID(Constants.OPERATORID_HONG_PENG); + } List pileList = pileBasicInfoService.getPileListForLianLian(stationId); @@ -1002,6 +1005,9 @@ public class LianLianPlatformServiceImpl implements ThirdPartyPlatformService { if( MerchantUtils.isPaiHeMerchant(String.valueOf(orderBasicInfo.getMerchantId()))){ orderInfo.setEquipmentOwnerID(Constants.OPERATORID_PAI_HE); } + if (MerchantUtils.isHongPeng(String.valueOf(orderBasicInfo.getMerchantId()))) { + orderInfo.setEquipmentOwnerID(Constants.OPERATORID_HONG_PENG); + } // 支付方式 if (StringUtils.equals(orderBasicInfo.getPayMode(), OrderPayModeEnum.PAYMENT_OF_WECHATPAY.getValue())) {