From 8d5fb4ee9d27fd6a61b210eaee74af265f76aa7c Mon Sep 17 00:00:00 2001
From: manailin <261030956@qq.com>
Date: 星期五, 08 四月 2022 14:55:18 +0800
Subject: [PATCH] [修改]修改配置

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

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialProjectDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialProjectDao.java
index 3bdef1a..c3a9e66 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialProjectDao.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialProjectDao.java
@@ -4,10 +4,16 @@
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.panzhihua.common.model.dtos.property.CommonPage;
+import com.panzhihua.common.model.vos.community.bigscreen.BigScreenActivityLine;
+import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkBaseInfo;
+import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkProjectInfo;
+import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHmkProjectTypeInfo;
 import com.panzhihua.common.model.vos.community.social.SocialProjectVO;
 import org.apache.ibatis.annotations.Mapper;
 import com.panzhihua.service_community.entity.ComActSocialProject;
 import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
 
 /**
  * 三社联动项目表(ComActSocialProject)表数据库访问层
@@ -33,4 +39,45 @@
      */
     SocialProjectVO getByApplet(Long id);
 
+    /**
+     * 河门口大屏项目基础数据
+     * @return
+     */
+    BigScreenHmkProjectInfo selectBaseInfo(Long communityId);
+
+    /**
+     * 河门口大屏项目分类
+     * @param orgName
+     * @param communityId
+     * @return
+     */
+    List<BigScreenHmkProjectTypeInfo> selectType(@Param("orgName")String orgName,@Param("communityId")Long communityId);
+
+    /**
+     * 根据活动类型查询数量
+     * @param type
+     * @return
+     */
+    Integer selectActivity(@Param("type") Integer type,@Param("communityId")Long communityId);
+
+    /**
+     * 首页基础数据
+     * @return
+     */
+    BigScreenHmkBaseInfo selectIndexBaseInfo();
+
+    /**
+     * 河门口大屏活动折线
+     * @param date
+     * @param year
+     * @return
+     */
+    BigScreenActivityLine selectActivityCountMonth(@Param("date") String date,@Param("year") String year);
+
+    /**
+     * id查询
+     * @param id
+     * @return
+     */
+    SocialProjectVO selectByLevel(Long id);
 }

--
Gitblit v1.7.1