From b2fce0dc7dc4ea5dec9792a2bc3ceb9d33d6e07b Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期一, 04 九月 2023 13:59:52 +0800 Subject: [PATCH] 修改后台社区动态加载不出来 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ScreenWorkService.java | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ScreenWorkService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ScreenWorkService.java index 34c0835..3dc6d71 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ScreenWorkService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ScreenWorkService.java @@ -10,6 +10,7 @@ /** * 大屏统计邻里圈 + * * @param communityId * @return */ @@ -17,6 +18,7 @@ /** * 大屏统计心愿单 + * * @param communityId * @return */ @@ -24,6 +26,7 @@ /** * 大屏统计社区活动 + * * @param communityId * @return */ @@ -31,6 +34,7 @@ /** * 大屏统计一起议 + * * @param communityId * @return */ @@ -38,6 +42,7 @@ /** * 大屏统计党建工作 + * * @param communityId * @return */ @@ -45,6 +50,7 @@ /** * 大屏统计随手拍 + * * @param communityId * @return */ @@ -52,8 +58,46 @@ /** * 大屏统计工作情况 + * * @param communityId * @return */ R workCount(Long communityId); + + R dynamicWork(Long communityId); + + /** + * 自治动态 + * */ + R autonomyDynamic(Long communityId); + + /** + * 红色物业 + * */ + R property(Long communityId); + + /** + * 党建数据 + * */ + R partyData(Long communityId); + + /** + * 小区院落 + * */ + R yard(Long communityId); + + /** + *居民信息 + * */ + R citizenInfo(Long communityId); + + /** + * 特殊人群信息 + * */ + R specialPeople(Long communityId); + + /** + * 基础数据 + * */ + R basicData(Long communityId); } -- Gitblit v1.7.1