| | |
| | | @PostMapping("/order/subscribe") |
| | | public R<Void> subscribe(@RequestParam(value = "id" , required = false) Long id ,@RequestParam(value = "technicianId", required = false) Integer technicianId); |
| | | |
| | | /** |
| | | * 预约技师 |
| | | */ |
| | | @PostMapping("/commission/calculationCommission") |
| | | public R<Void> calculationCommission(@RequestBody Set<String> orderIds); |
| | | |
| | | |
| | | @GetMapping("/shopping-cart/getGoodsPrice") |
| | | public R<Price> getGoodsPrice(@RequestParam("appUserId") Long appUserId, @RequestParam("goodsId") Integer goodsId, @RequestParam("shopId") Integer shopId); |