From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整
---
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