From f1e3fbddc3d96ba05c0627c5348efb283e0e7694 Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期三, 30 八月 2023 10:09:56 +0800
Subject: [PATCH] 新增小程序商家分类列表

---
 springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/XmostBeautifulApi.java |   32 ++++++++++++++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/XmostBeautifulApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/XmostBeautifulApi.java
index dfff322..35d793c 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/XmostBeautifulApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/XmostBeautifulApi.java
@@ -176,5 +176,37 @@
         return communityService.conditionData(id);
     }
 
+    /*************************************************************************************
+     *
+     *      路北社区商家模块
+     *
+     **************************************************************************************/
+    /**
+     * 分页查询
+     * @param
+     * @return
+     */
+    @GetMapping("/getList")
+    public R volunteerMerchantGetList(@RequestParam("pageNum") int pageNum,
+                                      @RequestParam("pageSize") int pageSize,
+                                      @RequestParam(value = "merchantState", required = false) String merchantState,
+                                      @RequestParam(value = "merchantType", required = false) String merchantType,
+                                      @RequestParam(value = "name", required = false) String name)
+    {
+        return communityService.volunteerMerchantGetList(pageNum, pageSize,merchantState,merchantType,name,getCommunityId()+"");
+    }
+
+    /**
+     * 分页查询
+     * @param
+     * @return
+     */
+    @GetMapping("/VolunteerMerchant/getList")
+    public R merchantvolunteerTypeGetList(@RequestParam("pageNum")  int pageNum,
+                                          @RequestParam("pageSize")  int pageSize)
+    {
+        return communityService.volunteerTypeGetList(pageNum,pageSize,"2");
+    }
+
 
 }

--
Gitblit v1.7.1