From 85cf42314fc04a637f1a44e78c1e476a445bf0f3 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期一, 14 三月 2022 13:29:18 +0800 Subject: [PATCH] Merge branch 'dev' --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java index 796ff0d..c6cb0dc 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java @@ -6,9 +6,13 @@ import com.panzhihua.common.model.dtos.property.CommonPage; import com.panzhihua.common.model.vos.community.ComActCommiteeVO; import com.panzhihua.common.model.vos.community.ComActFourMemberVO; +import com.panzhihua.common.model.vos.community.StatisticsCommVO; +import com.panzhihua.common.model.vos.community.bigscreen.BigScreenFourMemberStatisticsInfo; import org.apache.ibatis.annotations.Mapper; import com.panzhihua.service_community.entity.ComActFourMember; import org.apache.ibatis.annotations.Param; + +import java.util.List; /** * (ComActFourMember)表数据库访问层 @@ -27,4 +31,48 @@ IPage<ComActFourMemberVO> pageList(Page page, @Param("commonPage")CommonPage commonPage); ComActFourMemberVO getById(Integer id); ComActFourMemberVO getByIdVillage(Integer id); + + /** + * 获取四长四员基础数据 + * @param communityId + * @return + */ + BigScreenFourMemberStatisticsInfo getFourMemberBaseData(@Param("communityId") Long communityId); + + /** + * 获取四长四员成员数据 + * @param communityId + * @return + */ + List<ComActFourMemberVO> getFourMembers(@Param("communityId") Long communityId); + + /** + * 新增解决问题数统计 + * @param communityId + * @return + */ + List<StatisticsCommVO> retrieveJJWTAddPolylineData(@Param("communityId") Long communityId); + + /** + * 累计解决问题数 + * @param communityId + * @param date + * @return + */ + StatisticsCommVO retrieveJJWTTotalPolylineData(@Param("communityId") Long communityId, @Param("date") String date); + + /** + * 新增院落议事数统计 + * @param communityId + * @return + */ + List<StatisticsCommVO> retrieveYLYSAddPolylineData(@Param("communityId") Long communityId); + + /** + * 累计院落议事数统计 + * @param communityId + * @param date + * @return + */ + StatisticsCommVO retrieveYLYSTotalPolylineData(@Param("communityId") Long communityId, @Param("date") String date); } -- Gitblit v1.7.1