101captain
2021-12-23 5a8a90c095280fbd2106869ecd2bad10e01a57a6
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 communityId
     * @return
     */
    R partyActivityTop(Long communityId);
    /**
     * 服务数据
     * @param communityId
     * @return
     */
    R serviceData(Long communityId);
    /**
     * 服务用户
     * @param communityId
     * @return
     */
    R serviceUser(Long communityId);
}