From 6ede55d8b2c40d132167b60eedffb49030012620 Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期五, 10 十二月 2021 14:06:00 +0800
Subject: [PATCH] 大屏相关代码提交

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComPropertyDao.java |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComPropertyDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComPropertyDao.java
index 1fe435e..dd88186 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComPropertyDao.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComPropertyDao.java
@@ -6,9 +6,12 @@
 import com.panzhihua.common.model.dtos.property.CommonPage;
 import com.panzhihua.common.model.vos.community.ComActSocialOrgVO;
 import com.panzhihua.common.model.vos.community.ComPropertyVO;
+import com.panzhihua.common.model.vos.community.StatisticsCommVO;
 import org.apache.ibatis.annotations.Mapper;
 import com.panzhihua.service_community.entity.ComProperty;
 import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
 
 /**
  * (ComProperty)表数据库访问层
@@ -25,4 +28,23 @@
      * @return
      */
     IPage<ComPropertyVO> pageList(Page page, @Param("commonPage") CommonPage commonPage);
+
+    /**
+     * 居民自治大屏统计数据获取
+     * @param communityId
+     * @return
+     */
+    List<StatisticsCommVO> getRepairPolylineDate(@Param("communityId") Long communityId);
+
+    /**
+     * 报事报修date之前的累计数量
+     * @param communityId
+     * @param date
+     * @return
+     */
+    StatisticsCommVO getRepairTotalPolylineDate(@Param("communityId") Long communityId, @Param("date") String date);
+
+    List<StatisticsCommVO> getEventAddPolylineData(@Param("communityId") Long communityId);
+
+    StatisticsCommVO getEventTotalPolylineDate(@Param("communityId") Long communityId, @Param("date") String date);
 }

--
Gitblit v1.7.1