This commit is contained in:
YAS\29473
2025-08-22 11:56:58 +08:00
parent d91ed3a16e
commit 43f16b73e0
2 changed files with 6 additions and 6 deletions

View File

@@ -472,7 +472,7 @@ public class ChangZhouPlatformServiceImpl implements ThirdPartyPlatformService {
@Override
public String notificationStartChargeResult(String orderCode) {
//判断是否是常畅充平台的订单
Boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
if (!flag){
//表示不是常畅充平台的订单
return null;
@@ -592,7 +592,7 @@ public class ChangZhouPlatformServiceImpl implements ThirdPartyPlatformService {
@Override
public String notificationEquipChargeStatus(String orderCode) {
//判断是否是常畅充平台的订单
Boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
if (!flag){
//表示不是常畅充平台的订单
return null;
@@ -701,7 +701,7 @@ public class ChangZhouPlatformServiceImpl implements ThirdPartyPlatformService {
@Override
public String notificationStopChargeResult(String orderCode) {
//判断是否是常畅充平台的订单
Boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
if (!flag){
//表示不是常畅充平台的订单
return null;
@@ -776,7 +776,7 @@ public class ChangZhouPlatformServiceImpl implements ThirdPartyPlatformService {
@Override
public String notificationChargeOrderInfo(String orderCode, ThirdPartySecretInfoVO thirdPartySecretInfoVO) {
//判断是否是常畅充平台的订单
Boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
if (!flag){
//表示不是常畅充平台的订单
return null;
@@ -839,7 +839,7 @@ public class ChangZhouPlatformServiceImpl implements ThirdPartyPlatformService {
@Override
public String notificationPayOrderInfo(String orderCode){
//判断是否是常畅充平台的订单
Boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
boolean flag = isNeedPushToThirdPartyPlatform(orderCode , ThirdPlatformTypeEnum.CHANG_ZHOU_PLATFORM.getOperatorId());
if (!flag){
//表示不是常畅充平台的订单
return null;