update 海南平台对接

This commit is contained in:
2024-01-29 16:03:36 +08:00
parent be32910512
commit 8b7c99291b
2 changed files with 8 additions and 0 deletions

View File

@@ -157,6 +157,10 @@ public class CommonService {
// // 华为 // // 华为
// result = huaWeiService.notificationOperationSystemInfo(dto); // result = huaWeiService.notificationOperationSystemInfo(dto);
// } // }
if(StringUtils.equals(ThirdPlatformTypeEnum.HAI_NAN.getCode(), dto.getThirdPartyType())) {
// 华为
result = haiNanChargeService.pushStationInfo(dto);
}
finalResult.append(result).append("\n"); finalResult.append(result).append("\n");
} }
return finalResult.toString(); return finalResult.toString();

View File

@@ -69,6 +69,10 @@ public class HaiNanPlatformLogic extends AbsInterfaceWithPlatformLogic {
InterfaceWithPlatformLogicFactory.register(ThirdPlatformTypeEnum.HAI_NAN.getCode(), this); InterfaceWithPlatformLogicFactory.register(ThirdPlatformTypeEnum.HAI_NAN.getCode(), this);
} }
public String pushStationInfoV2(PushStationInfoDTO dto) {
return zdlService.pushStationInfoV2(dto);
}
/** /**
* 6.2 查询充电站信息 * 6.2 查询充电站信息
*/ */