修改对接第三方平台的枪口状态对应关系

This commit is contained in:
Lemon
2024-01-17 15:54:43 +08:00
parent 004410091e
commit a68b53e155
3 changed files with 45 additions and 19 deletions

View File

@@ -719,12 +719,12 @@ public class LianLianServiceImpl implements LianLianService {
String operatorName = ThirdPlatformTypeEnum.getLabelByCode(type);
// 通过订单号查询订单信息
OrderBasicInfo orderInfo = orderBasicInfoService.getOrderInfoByOrderCode(dto.getStartChargeSeq());
logger.info(operatorName + "查询订单信息 orderInfo:{}", orderInfo);
// logger.info(operatorName + "查询订单信息 orderInfo:{}", orderInfo);
if (orderInfo == null) {
return null;
}
ThirdPartyPlatformConfig configInfo = thirdPartyPlatformConfigService.getInfoByOperatorId(operatorID);
logger.info(operatorName + "查询密钥信息 configInfo:{}", configInfo);
// logger.info(operatorName + "查询密钥信息 configInfo:{}", configInfo);
if (configInfo == null) {
return null;
}