| | |
| | | public ChargingGunClient create(Throwable throwable) { |
| | | log.error("充电枪调用失败:{}", throwable.getMessage()); |
| | | return new ChargingGunClient() { |
| | | |
| | | |
| | | @Override |
| | | public R<List<TChargingGun>> getAllGun() { |
| | | return R.fail("获取数据失败:" + throwable.getMessage()); |
| | | } |
| | | |
| | | @Override |
| | | public R<List<TChargingPile>> getAllPile() { |
| | | return R.fail("获取所有桩失败:" + throwable.getMessage()); |
| | | } |
| | | |
| | | @Override |
| | | public R<String> getAllName(Integer id) { |
| | | return R.fail("根据id获取充电枪完整名称失败:" + throwable.getMessage()); |
| | |
| | | } |
| | | |
| | | @Override |
| | | public R<List<TChargingGun>> getChargingGunByChargingPileIds(List<Integer> chargingPileIds) { |
| | | return R.fail("根据充电桩ids获取枪失败:" + throwable.getMessage()); |
| | | } |
| | | |
| | | @Override |
| | | public R pushChargingGunStatus(Integer id, Integer status) { |
| | | return R.fail("接口状态变化后推送给第三方失败:" + throwable.getMessage()); |
| | | } |
| | | |
| | | @Override |
| | | public R<TChargingGun> getChargingGunByFullNumber(String fullNumber) { |
| | | return R.fail("根据枪唯一码查询信息失败:" + throwable.getMessage()); |
| | | } |
| | | }; |
| | | } |
| | | } |