| | |
| | | |
| | | |
| | | /** |
| | | * |
| | | * @param code |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping(value = "/refund1") |
| | | public R refund1(@RequestParam(value = "code") String code, @RequestParam(value = "money") BigDecimal money){ |
| | | chargingOrderService.refund1(code, money); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 远程启动失败后退款回调 |
| | | */ |
| | | @ResponseBody |
| | |
| | | return chargingOrderService.getNotPaymentChargingOrder(); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 手动推送订单给三方平台 |
| | | * @param code |
| | | * @return |
| | | */ |
| | | @PostMapping("/pushOrderInfo") |
| | | public R pushOrderInfo(@RequestParam String code){ |
| | | return chargingOrderService.pushOrderInfo(code); |
| | | } |
| | | |
| | | } |