From 86df207c37502cce1b2043e1c7c0486459eef1d6 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期四, 13 三月 2025 19:58:45 +0800
Subject: [PATCH] 党员、诉求评论基础代码

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/jinhui/JinhuiCommunityService.java |   47 ++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 44 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/jinhui/JinhuiCommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/jinhui/JinhuiCommunityService.java
index f2c4281..0b0b1a6 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/jinhui/JinhuiCommunityService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/jinhui/JinhuiCommunityService.java
@@ -14,6 +14,7 @@
 
 import javax.annotation.Resource;
 import java.util.Date;
+import java.util.List;
 
 /**
  * 金汇社区
@@ -424,7 +425,8 @@
                              @RequestParam(value = "state",required = false) String state,
                              @RequestParam(value = "interspaceTime",required = false) String interspaceTime,
                              @RequestParam(value = "subscribeTimeFrame",required = false) String subscribeTimeFrame,
-                             @RequestParam(value = "interspaceId",required = false) String  interspaceId);
+                             @RequestParam(value = "interspaceId",required = false) String interspaceId,
+                             @RequestParam(value = "userId",required = false) String userId);
 
     /**
      * 空间预约申请详情
@@ -583,7 +585,7 @@
 
 
     @GetMapping("/jinhuiShopping/shoppingGetDetails")
-    public R shoppingGetDetails(@RequestParam("id") String id);
+    public R shoppingGetDetails(@RequestParam("id") String id,@RequestParam("communityId") String communityId);
 
     /**
      * 新增
@@ -1002,7 +1004,12 @@
     public R expurgateReseauData(@RequestParam("id") String id);
 
 
-
+    /**
+     * 获取未绑定人员的网格
+     * @return
+     */
+    @GetMapping("/jinhuiReseau/getReseauBoxList")
+    public R getReseauBoxList();
 
     /********************************************************************************************************
      *
@@ -1088,6 +1095,15 @@
                             @RequestParam(value = "state", required = false) String state);
 
     /**
+     * 金汇大屏用
+     *
+     * @param
+     * @return
+     */
+    @GetMapping("/JinhuiCharity/getJinhuiCharityList")
+    public R getJinhuiCharityList();
+
+    /**
      * 获取详情
      * @param id
      * @return
@@ -1110,6 +1126,31 @@
     public R expurgateCharityData(@RequestParam("id") String id);
 
 
+    /***************************************************************************************************************
+     *
+     *                 金汇大屏
+     *
+     **************************************************************************************************************/
+    /**
+     * 金汇首页数据
+     * @return
+     */
+    @GetMapping("/JinhuiLargeScreen/getIndexInfo")
+    public R getIndexInfo();
 
 
+    /**
+     * 金汇大屏社区服务
+     * @return
+     */
+    @GetMapping("/JinhuiLargeScreen/getCommunityServices")
+    public R getCommunityServices();
+
+    /**
+     * 金汇居家养老
+     * @return
+     */
+    @GetMapping("/JinhuiLargeScreen/getOldMan")
+    public R getOldMan();
+
 }

--
Gitblit v1.7.1