push to server
This commit is contained in:
parent
d4c18164ae
commit
97dfc60a6c
@ -25,7 +25,7 @@ public interface PowerPileService {
|
||||
|
||||
@PutMapping("charging/stop/{orderNo}/{pileNo}/{gunId}/{version}")
|
||||
R stopCharging(@PathVariable("orderNo") String orderNo, @PathVariable("pileNo") String pileNo,
|
||||
@PathVariable("gunId") String gunId);
|
||||
@PathVariable("gunId") String gunId, String version);
|
||||
|
||||
@PostMapping("/pile/whitelist/add/{stationId}")
|
||||
R addPileWhitelist(@PathVariable("stationId") Long stationId, @RequestBody Set<String> pileNoSet);
|
||||
|
||||
@ -35,7 +35,7 @@ public class PowerPileFallbackFactory implements FallbackFactory<PowerPileServic
|
||||
}
|
||||
|
||||
@Override
|
||||
public R stopCharging(String orderNo, String pileNo, String gunId) {
|
||||
public R stopCharging(String orderNo, String pileNo, String gunId, String version) {
|
||||
|
||||
return R.fail("停止充电失败:" + cause.getMessage());
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user