mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 20:45:10 +08:00
Merge branch 'dev' of https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web into dev
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -366,7 +366,7 @@ public class JiangSuPlatformServiceImpl implements ThirdPartyPlatformService {
|
||||
}
|
||||
chargeStartTime = orderBasicInfo.getChargeStartTime();
|
||||
// 查询实时数据缓存
|
||||
String redisKey = CacheConstants.PILE_REAL_TIME_MONITOR_DATA + pileConnectorCode + "_" + orderBasicInfo.getTransactionCode();
|
||||
String redisKey = CacheConstants.PILE_REAL_TIME_MONITOR_DATA + pileConnectorCode + "_" + orderBasicInfo.getTransactionCode(); // 查缓存
|
||||
realTimeMonitorData = redisCache.getCacheObject(redisKey);
|
||||
}
|
||||
if (realTimeMonitorData == null) {
|
||||
|
||||
Reference in New Issue
Block a user