| | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/1/24 10:32 |
| | |
| | | * @param startChargeSeq |
| | | * @return |
| | | */ |
| | | @PostMapping("/notificationChargeOrderInfo") |
| | | @PostMapping("/evcs/v1.0/notificationChargeOrderInfo") |
| | | R notificationChargeOrderInfo(@RequestParam("startChargeSeq") String startChargeSeq, @RequestParam("operatorId") Integer operatorId); |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 站点变更推送通知 |
| | | * @param siteIds |
| | | * @return |
| | | */ |
| | | @PostMapping("/evcs/v1.0/notificationStationChange") |
| | | R notificationStationChange(@RequestParam("siteIds") List<Integer> siteIds); |
| | | } |