From bf46bac3cda70dc8dc7ed95e0461f1a72fba2eeb Mon Sep 17 00:00:00 2001
From: 101captain <237651143@qq.com>
Date: 星期一, 01 八月 2022 14:44:43 +0800
Subject: [PATCH] Merge branch 'shuangzheng2' into huacheng_test

---
 springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java
index e10e280..1bdc0a1 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java
@@ -207,9 +207,8 @@
     @ApiOperation(value = "查询社区邻里圈话题列表", response = ComActNeighborCircleTopicAppVO.class)
     @GetMapping("topic/list")
     public R getNeighborTopicByApp(
-            @RequestParam(value = "name",defaultValue = "",required = false) String name,
-            @RequestParam(value = "belongType", defaultValue = "1", required = false) Integer belongType) {
-        return communityService.getNeighborTopicByApp(name, belongType);
+            @RequestParam(value = "name",defaultValue = "",required = false) String name) {
+        return communityService.getNeighborTopicByApp(name);
     }
 
     @ApiOperation(value = "用户删除邻里圈")
@@ -256,6 +255,16 @@
         return this.communityService.serviceStatic(serviceStaticDTO);
     }
 
-
+    /**
+     * 求助我的问题数量统计
+     * @param type
+     * @param phone
+     * @return
+     */
+    @ApiOperation(value = "求助我的问题数量统计")
+    @GetMapping("/selectCount")
+    public R selectCount(@RequestParam("type")Integer type,@RequestParam(value = "phone",required = false)String phone){
+        return this.communityService.selectCount(type,phone);
+    }
 }
 

--
Gitblit v1.7.1