This commit is contained in:
Cauchy
2023-10-20 14:56:09 +08:00
parent e25d66878e
commit e4bd2854a3
3 changed files with 59 additions and 0 deletions

View File

@@ -82,6 +82,13 @@ public class BuyOrderController {
private SysConfigService sysConfigService;
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params) throws Exception {
PageUtils page = buyOrderService.list(params);
return R.ok().put("page", page);
}
/**
* 订单列表
*