| | |
| | | * @param vo |
| | | */ |
| | | @PostMapping("/t-charging-order/endChargeBillingCharge") |
| | | void endChargeBillingCharge(@RequestBody TransactionRecordMessageVO vo); |
| | | R endChargeBillingCharge(@RequestBody TransactionRecordMessageVO vo); |
| | | |
| | | /** |
| | | * 获取充电订单数据 |
| | |
| | | @RequestParam("endTime") String endTime); |
| | | |
| | | |
| | | /** |
| | | * 根据车牌号查询指定时间范围内的数据 |
| | | * @param plateNum |
| | | * @param startTime |
| | | * @param endTime |
| | | * @return |
| | | */ |
| | | @PostMapping("/t-charging-order/getCarChargingOrderByPlateNum") |
| | | R<List<TChargingOrder>> getCarChargingOrderByPlateNum(@RequestParam("plateNum") String plateNum, @RequestParam("startTime") String startTime, |
| | | @RequestParam("endTime") String endTime); |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 添加三方平台充电订单数据 |
| | |
| | | R<TChargingOrder> getChargingOrderByStartChargeSeq(@RequestParam("startChargeSeq") String startChargeSeq); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 根据三方平台订单ids获取充电数据 |
| | | * @param startChargeSeqs |
| | | * @return |
| | | */ |
| | | @PostMapping("/t-charging-order/getChargingOrderByStartChargeSeqs") |
| | | R<List<TChargingOrder>> getChargingOrderByStartChargeSeqs(@RequestParam("startChargeSeqs") List<String> startChargeSeqs); |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 三方平台请求停止充电 |
| | | * @param startChargeSeq |