101captain
2022-03-02 60784a329fd3cf9f4b6a75b8dc39ff79bd907dc6
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BigScreenStatisticsService.java
@@ -2,6 +2,7 @@
import com.panzhihua.common.model.dtos.PageBaseDTO;
import com.panzhihua.common.model.dtos.community.convenient.PagePopularMerchantDTO;
import com.panzhihua.common.model.dtos.property.CommonPage;
import com.panzhihua.common.model.vos.R;
/**
@@ -125,8 +126,71 @@
    R indexQuestionnaireList(PageBaseDTO pageBaseDTO);
    /**
     * 首页二级页面-居民活动
     * @param communityId
     * @return
     */
    R indexResidentAct(Long communityId);
    /**
     * 首页二级页面-居民活动展示列表
     * @param pageBaseDTO
     * @return
     */
    R indexResidentActList(PageBaseDTO pageBaseDTO);
    /**
     * 首页二级页面-志愿者活动
     * @param communityId
     * @return
     */
    R indexVolunteerAct(Long communityId);
    /**
     * 首页二级页面-志愿者活动展示列表
     * @param pageBaseDTO
     * @return
     */
    R indexVolunteerActList(PageBaseDTO pageBaseDTO);
    /**
     * 清网治格-根据事件分类获取近1月的社区事件数据
     * @param type
     * @param communityId
     * @return
     */
    R getEventList(Integer type, Long communityId);
    /**
     * 清网治格-社区事件数据分页
     * @param pageBaseDTO
     * @return
     */
    R pageEventList(PageBaseDTO pageBaseDTO);
    /**
     * 河门口大屏首页
     * @return
     */
    R hmkBaseInfo();
    R hmkBaseInfo(CommonPage commonPage);
    /**
     * 河门口大屏折线图
     * @return
     */
    R partyProjectActivityLine();
    /**
     * 活动评分排名
     * @param commonPage
     * @return
     */
    R projectActivityProject(CommonPage commonPage);
    /**
     * 根据责任方名字查询项目类型饼状图
     * @param name
     * @return
     */
    R projectType(String name);
}