From 574f3e567a9b95949fbd0c15e10cbc2b5439dc7b Mon Sep 17 00:00:00 2001 From: fangyuan <527392886@qq.com> Date: 星期三, 14 十二月 2022 17:23:17 +0800 Subject: [PATCH] 趋势分析接口修改 --- ycl-platform/src/main/java/com/ycl/controller/store/StoreInfoController.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/controller/store/StoreInfoController.java b/ycl-platform/src/main/java/com/ycl/controller/store/StoreInfoController.java index 2657d6e..d98ac78 100644 --- a/ycl-platform/src/main/java/com/ycl/controller/store/StoreInfoController.java +++ b/ycl-platform/src/main/java/com/ycl/controller/store/StoreInfoController.java @@ -52,8 +52,10 @@ @LogSave(operationType = "闂ㄥ簵绠$悊", contain = "鏌ヨ闂ㄥ簵") public CommonResult<CommonPage<StoreInfoVO>> list(@RequestParam(value = "keyword", required = false) String keyword, @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize, - @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) { - Page<StoreInfoVO> storeInfoPage = storeInfoService.list(keyword, pageSize, pageNum); + @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum, + @RequestParam(value = "status", required = false) String status + ) { + Page<StoreInfoVO> storeInfoPage = storeInfoService.list(keyword, pageSize, pageNum,status); return CommonResult.success(CommonPage.restPage(storeInfoPage)); } -- Gitblit v1.8.0