| | |
| | | |
| | | @GetMapping("/getShopOrderList") |
| | | @ApiOperation(value = "获取订单列表", tags = {"门店后台-订单管理-获取订单列表"}) |
| | | public R<IPage<OrderPageListVo>> getShopOrderList(@RequestParam("content") String content , |
| | | @RequestParam("status") Integer status, |
| | | public R<IPage<OrderPageListVo>> getShopOrderList(@RequestParam(value = "content",required = false) String content , |
| | | @RequestParam(value = "status",required = false) Integer status, |
| | | @RequestParam("shopId") Integer shopId, |
| | | @RequestParam("pageNum") Integer pageNum, |
| | | @RequestParam("pageSize") Integer pageSize) { |