| | |
| | | /** |
| | | * 扫码校验 |
| | | */ |
| | | @ApiOperation(value = "扫码校验", tags = {"订单核销"}) |
| | | @ApiOperation(value = "扫码校验", tags = {"小程序-个人中心-门店管理-扫码核销校验"}) |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "分享id", name = "shareId", required = true, dataType = "int"), |
| | | }) |
| | | @GetMapping("/check/{orderId}/{shopId}") |
| | | public AjaxResult check(@PathVariable("orderId") Integer orderId, @PathVariable("shopId") Integer shopId){ |
| | | return AjaxResult.success(orderService.check(orderId, shopId)); |
| | | return AjaxResult.ok(orderService.check(orderId, shopId)); |
| | | } |
| | | |
| | | /** |