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/service/ComActService.java | 25 +++++++++++++++++++++++-- 1 files changed, 23 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java index 6f93ef5..194a04b 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java @@ -78,7 +78,7 @@ * * @return 社区列表 */ - R getCommunityLists(); + R getCommunityLists(String appId); /** * 查询西区社区列表 @@ -92,7 +92,7 @@ * * @return 社区列表 */ - R getCommunityAllList(String areaCode); + R getCommunityAllList(String appId); /** * 根据名字查询所有社区列表 @@ -113,4 +113,25 @@ R communitySwitchSearchDistanceList(SearchCommunityDTO communityDTO); R getCommunityPassword(Long communityId); + + R selectIds(Long id); + + /** + * 统计大屏-基础数据 + * @return + */ + R selectBasicData(); + + /** + * 统计在职干部特长 + * @return + */ + R statisticsPbMemberType(); + + /** + * 单位统计 + * @return + */ + R selectUnitByNatureName(); + } -- Gitblit v1.7.1