| | |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "分享id", name = "shareId", required = true, dataType = "int", paramType="query"), |
| | | }) |
| | | @GetMapping("/check/{orderId}/{shopId}") |
| | | public R<Boolean> check(@PathVariable("orderId") Long orderId, @PathVariable("shopId") Long shopId){ |
| | | return R.ok(orderService.check(orderId, shopId)); |
| | | @GetMapping("/check/{orderNumber}/{shopId}") |
| | | public R<Boolean> check(@PathVariable("orderNumber") String orderNumber, @PathVariable("shopId") Long shopId){ |
| | | return R.ok(orderService.check(orderNumber, shopId)); |
| | | } |
| | | |
| | | /** |