getUserCombinationList(@RequestParam(value = "page",defaultValue = "1") int page,
+ @RequestParam(value = "limit",defaultValue = "10") int limit){
+ return ApiResult.ok(storeCombinationService.getCombinationList(page, limit));
+ }
+
+
/**
* 拼团产品详情
*/
diff --git a/zsw-bxg/src/main/java/co/yixiang/app/modules/hotList/rest/AppStoreHotListController.java b/zsw-bxg/src/main/java/co/yixiang/app/modules/hotList/rest/AppStoreHotListController.java
index 6ea86d8d..442b40bd 100644
--- a/zsw-bxg/src/main/java/co/yixiang/app/modules/hotList/rest/AppStoreHotListController.java
+++ b/zsw-bxg/src/main/java/co/yixiang/app/modules/hotList/rest/AppStoreHotListController.java
@@ -2,9 +2,11 @@ package co.yixiang.app.modules.hotList.rest;
import cn.iocoder.yudao.framework.common.pojo.ApiResult;
import co.yixiang.annotation.AnonymousAccess;
+import co.yixiang.app.modules.activity.param.YxStoreBargainUserHelpQueryParam;
import co.yixiang.modules.evaluation.service.YxEvaluationService;
import co.yixiang.modules.hotList.service.YxStoreHotListService;
-import co.yixiang.modules.hotList.service.dto.YxStoreHotListDto;
+import co.yixiang.modules.hotList.param.YxStoreHotListRecordQueryParam;
+import co.yixiang.modules.product.domain.YxStoreProduct;
import co.yixiang.utils.EvaluationDTO;
import co.yixiang.utils.HotListDTO;
import io.swagger.annotations.Api;
@@ -17,6 +19,7 @@ import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
+import java.util.Map;
/**
*
@@ -38,21 +41,29 @@ public class AppStoreHotListController {
* 热门榜单列表
*/
@AnonymousAccess
- @GetMapping("/hotList")
- @ApiOperation(value = "热门榜单列表",notes = "热门榜单")
- public ApiResult> getYxStoreHotList(){
-
- return ApiResult.ok(yxStoreHotListService.getList());
+ @GetMapping("/hotListData")
+ @ApiOperation(value = "榜单可选月及每月可选分类",notes = "榜单信息")
+ public ApiResult