| | |
| | | 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; |
| | | |
| | | /** |
| | | * @ClasssName BigScreenService |
| | |
| | | public interface BigScreenService { |
| | | /** |
| | | * 党员党支部统计信息 |
| | | * |
| | | * @param pageBigScreenStatisticPartyOrg |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 党员年龄占比、男女占比 |
| | | * |
| | | * @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); |
| | | } |