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/BigScreenService.java | 48 +++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 43 insertions(+), 5 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BigScreenService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BigScreenService.java index 639e9af..ca58504 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BigScreenService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BigScreenService.java @@ -1,12 +1,16 @@ package com.panzhihua.service_community.service; +import java.util.List; + import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenStatisticAgeGenderDTO; import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenStatisticPartyActivityDTO; import com.panzhihua.common.model.dtos.community.bigscreen.PageBigScreenStatisticPartyOrg; import com.panzhihua.common.model.vos.R; -import com.panzhihua.common.model.vos.community.bigscreen.*; - -import java.util.List; +import com.panzhihua.common.model.vos.community.bigscreen.BigScreenStatisticAgeGender; +import com.panzhihua.common.model.vos.community.bigscreen.BigScreenStatisticPartyActivity; +import com.panzhihua.common.model.vos.community.bigscreen.BigScreenStatisticPartyBuild; +import com.panzhihua.common.model.vos.community.bigscreen.PartyBuildingMemberVO; +import org.springframework.web.bind.annotation.RequestParam; /** * @ClasssName BigScreenService @@ -18,6 +22,7 @@ public interface BigScreenService { /** * 党员党支部统计信息 + * * @param pageBigScreenStatisticPartyOrg * @return */ @@ -25,26 +30,59 @@ /** * 党员年龄占比、男女占比 + * * @param bigScreenStatisticAgeGenderDTO * @return */ R<BigScreenStatisticAgeGender> ageGender(BigScreenStatisticAgeGenderDTO bigScreenStatisticAgeGenderDTO); /** - * 党建数据概览 + * 党建数据概览 + * * @return */ R<BigScreenStatisticPartyBuild> bigscreenPartybuild(Long communityId); /** * 党员活动参加用户排行榜-TOP3 + * * @return */ R<List<PartyBuildingMemberVO>> bigscreenPartyactivitytopuser(Long communityId); /** * 党员活动 + * * @return */ - R<List<BigScreenStatisticPartyActivity>> bigscreenPartyactivity(BigScreenStatisticPartyActivityDTO bigScreenStatisticPartyActivityDTO); + R<List<BigScreenStatisticPartyActivity>> + bigscreenPartyactivity(BigScreenStatisticPartyActivityDTO bigScreenStatisticPartyActivityDTO); + + /** + * 党员活动折线图 + * @param communityId + * @return + */ + R partyActivityLine(Long communityId); + + /** + *查询党员积分前3 + * @param pageBigScreenStatisticPartyOrg + * @return + */ + R partyActivityTop(PageBigScreenStatisticPartyOrg pageBigScreenStatisticPartyOrg); + + /** + * 服务数据 + * @param communityId + * @return + */ + R serviceData(Long communityId); + + /** + * 服务用户 + * @param communityId + * @return + */ + R serviceUser(Long communityId); } -- Gitblit v1.7.1