From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期一, 09 六月 2025 11:54:00 +0800
Subject: [PATCH] 6.9新增登录失败冻结逻辑

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java |   99 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 99 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java
index e96f843..9c9d49c 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java
@@ -493,4 +493,103 @@
     public R pageFourMemberResolve(@RequestBody PageBaseDTO pageBaseDTO) {
         return bigScreenStatisticsService.pageFourMemberResolve(pageBaseDTO);
     }
+
+    /**
+     * 金沙定制页面-四长四员院落议事展示列表
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/courtyard/list")
+    public R pageCourtyardDiscuss(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.pageCourtyardDiscuss(pageBaseDTO);
+    }
+
+    /**
+     * 金沙定制页面-院落议事
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/courtyard/base")
+    public R getCourtyardBaseData(@RequestParam("communityId") Long communityId) {
+        return bigScreenStatisticsService.getCourtyardBaseData(communityId);
+    }
+
+    /**
+     * 孵化中心-基础数据
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/hatch/base")
+    public R getHatchBaseData(@RequestParam("communityId") Long communityId) {
+        return bigScreenStatisticsService.getHatchBaseData(communityId);
+    }
+
+    /**
+     * 孵化中心-孵化成果展示列表
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/hatchResult/list")
+    public R pageHatchResult(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.pageHatchResult(pageBaseDTO);
+    }
+
+    /**
+     * 孵化中心-孵化进度展示列表
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/hatchSchedule/list")
+    public R pageHatchSchedule(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.pageHatchSchedule(pageBaseDTO);
+    }
+
+    /**
+     * 五社联动基础数据
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/fiveAssociations/base")
+    public R getFiveAssociationsBaseData(@RequestParam("communityId") Long communityId) {
+        return bigScreenStatisticsService.getFiveAssociationsBaseData(communityId);
+    }
+
+    /**
+     * 五社联动项目展示列表
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/socialProject/list")
+    public R pageSocialProjectList(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.pageSocialProjectList(pageBaseDTO);
+    }
+
+    /**
+     * 五社联动社会组织展示列表
+     * @param pageBaseDTO
+     * @return
+     */
+    @PostMapping("/socialOrg/list")
+    public R pageSocialOrgList(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.pageSocialOrgList(pageBaseDTO);
+    }
+
+    /**
+     * 人大代表
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/dpc/base")
+    public R dpcBase(@RequestParam("communityId") Long communityId) {
+        return bigScreenStatisticsService.dpcBase(communityId);
+    }
+
+    /**
+     * 人大代表-随手拍展示列表
+     * @return
+     */
+    @PostMapping("/dpc/easyPhotoList")
+    public R dpcEasyPhotoList(@RequestBody PageBaseDTO pageBaseDTO) {
+        return bigScreenStatisticsService.dpcEasyPhotoList(pageBaseDTO);
+    }
 }

--
Gitblit v1.7.1