| | |
| | | * @param orderId 订单id |
| | | * @return 订单详情 |
| | | */ |
| | | @PostMapping("/shopFlower/orderDetail") |
| | | @GetMapping("/shopFlower/orderDetail") |
| | | R orderDetailFlower(@RequestParam("orderId") Long orderId); |
| | | |
| | | /** |
| | |
| | | * @param orderId 订单id |
| | | * @return 删除结果 |
| | | */ |
| | | @PostMapping("/shopFlower/orderDelete") |
| | | @DeleteMapping("/shopFlower/orderDelete") |
| | | R orderDeleteFlower(@RequestParam("orderId") Long orderId); |
| | | |
| | | /** |
| | |
| | | */ |
| | | @GetMapping("/shopFlower/getQuota") |
| | | R getQuota(@RequestParam("storeId") Long storeId); |
| | | |
| | | /** |
| | | * 取消退款 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/refundOrderCancel") |
| | | R refundOrderCancel(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 退款订单详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/refundOrderDetail") |
| | | R refundOrderDetail(@RequestParam("id") Long id); |
| | | |
| | | } |