From 7d9fbfdc05485c8e2cb457dffb1fd29580dfb41b Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期四, 23 十二月 2021 16:02:15 +0800 Subject: [PATCH] Merge branch 'bigscreen_dev' --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActNeighborCircleDAO.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActNeighborCircleDAO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActNeighborCircleDAO.java index a6c0b7f..0e8837c 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActNeighborCircleDAO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActNeighborCircleDAO.java @@ -3,6 +3,7 @@ import java.util.List; import java.util.Map; +import com.panzhihua.common.model.vos.community.StatisticsCommVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; @@ -116,4 +117,28 @@ void addHotNum(@Param("circleId") Long circleId,@Param("hotNum") Long hotNum); void addTopicHotNum(@Param("circleId") Long circleId,@Param("hotNum") Long hotNum); + + /** + * 获取大屏邻里圈展示图片 + * @param communityId + * @param pageSize + * @return + */ + List<String> getAllImages(@Param("communityId") Long communityId, @Param("pageSize") Integer pageSize); + + /** + * 获取大屏邻里圈展示文本内容 + * @param communityId + * @param pageSize + * @return + */ + List<String> getContents(@Param("communityId") Long communityId, @Param("pageSize") Integer pageSize); + + List<StatisticsCommVO> getIndexNeighborBaseData(@Param("communityId") Long communityId); + + List<StatisticsCommVO> getNeighborAddPolylineData(@Param("communityId") Long communityId); + + StatisticsCommVO getNeighborTotalPolylineDate(@Param("communityId") Long communityId, @Param("date") String date); + + List<ComActNeighborCircleAdminVO> indexNeighborList(@Param("communityId") Long communityId, @Param("topicId") Long topicId, @Param("pageSize") Integer pageSize); } \ No newline at end of file -- Gitblit v1.7.1