| | |
| | | @ResponseBody |
| | | public ServerResponse getStockAiOrderList(@RequestParam(value = "pageNum", defaultValue = "1") int pageNum, |
| | | @RequestParam(value = "pageSize", defaultValue = "5") int pageSize, |
| | | @RequestParam(value = "stockType") String stockType, |
| | | @RequestParam(value = "status") String status, |
| | | @RequestParam(value = "userId") Integer userId, |
| | | @RequestParam(value = "phone") String phone) { |
| | | @RequestParam(value = "stockType", required = false) String stockType, |
| | | @RequestParam(value = "status", required = false) String status, |
| | | @RequestParam(value = "userId", required = false) Integer userId, |
| | | @RequestParam(value = "phone", required = false) String phone) { |
| | | return stockAiService.getAdminStockAiOrderList(pageNum, pageSize, stockType, status, userId, phone); |
| | | } |
| | | |