From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +0800 Subject: [PATCH] 修改文件上传类型限制 --- 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