| | |
| | | } |
| | | |
| | | @ApiOperation("订单状态数量") |
| | | @PostMapping(value = "/jhy/order/orderStatusCnt") |
| | | public JsonResult<Map<Integer, Integer>> orderStatusCnt(HttpServletRequest request) { |
| | | return JsonResult.success(jhyOrderService.orderStatusCount(getUserId(request))); |
| | | @PostMapping(value = "/jhy/order/orderStatusCnt/{type}") |
| | | public JsonResult<Map<Integer, Integer>> orderStatusCnt(@PathVariable("type") Integer type, HttpServletRequest request) { |
| | | return JsonResult.success(jhyOrderService.orderStatusCount(type, getUserId(request))); |
| | | } |
| | | |
| | | } |