This commit is contained in:
Cauchy
2023-10-23 15:26:10 +08:00
parent 0772e198c9
commit 9b37d2126a
4 changed files with 17 additions and 11 deletions

View File

@@ -103,7 +103,7 @@ public class BuyOrderController {
*/
@RequestMapping(path = "/orderList", method = RequestMethod.POST)
public R orderList(@RequestBody BuyOrderListRequestVo requestVo) {
PageUtils page = buyOrderService.orderList(requestVo);
List<BuyOrderResponseVo> page = buyOrderService.orderList(requestVo);
return R.ok().put("result", page);
}