| | |
| | | */ |
| | | @FeignClient(contextId = "TCECClient", value = ServiceNameConstants.INTEGRATION_SERVICE, fallbackFactory = TCECClientFallbackFactory.class) |
| | | public interface TCECClient { |
| | | |
| | | |
| | | /** |
| | | * 推送充换电站信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping("/evcs/v1.0/supervise_notification_station_info") |
| | | R superviseNotificationStationInfo(@RequestParam("id") Integer id); |
| | | |
| | | /** |
| | | * 接口状态变化后推送给第三方 |
| | | * @return |
| | | */ |
| | | @PostMapping("/evcs/v1.0/pushChargingGunStatus") |
| | | R pushChargingGunStatus(@RequestParam("id") Integer id, @RequestParam("status") Integer status); |
| | | R pushChargingGunStatus(@RequestParam("fullNumber") String fullNumber, @RequestParam("status") Integer status); |
| | | |
| | | |
| | | |