From b2fce0dc7dc4ea5dec9792a2bc3ceb9d33d6e07b Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期一, 04 九月 2023 13:59:52 +0800
Subject: [PATCH] 修改后台社区动态加载不出来

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDynDAO.java |  152 ++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 115 insertions(+), 37 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDynDAO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDynDAO.java
index 2a38f7b..5293066 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDynDAO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDynDAO.java
@@ -1,14 +1,26 @@
 package com.panzhihua.service_community.dao;
 
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.baomidou.mybatisplus.core.metadata.IPage;
-import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
-import com.panzhihua.common.model.vos.community.ComActActivityVO;
-import com.panzhihua.common.model.vos.community.ComActDynVO;
-import com.panzhihua.service_community.model.dos.ComActDynDO;
+import java.util.List;
+import java.util.Map;
+
+import com.panzhihua.common.model.dtos.PageBaseDTO;
+import com.panzhihua.common.model.vos.community.ComActDiscussVO;
+import com.panzhihua.common.model.vos.community.ComSwPatrolRecordVO;
+import com.panzhihua.common.model.vos.community.StatisticsCommVO;
+import com.panzhihua.common.model.vos.community.bigscreen.BigScreenPartyBuildIngStatisticsInfo;
+import com.panzhihua.common.model.vos.partybuilding.PartyBuildingActivityVO;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 import org.apache.ibatis.annotations.Select;
+import org.apache.ibatis.annotations.Update;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.panzhihua.common.model.vos.community.ComActDynVO;
+import com.panzhihua.common.model.vos.screen.DateScreenVO;
+import com.panzhihua.common.model.vos.screen.DynamicWorkVO;
+import com.panzhihua.service_community.model.dos.ComActDynDO;
 
 /**
  * @program: springcloud_k8s_panzhihuazhihuishequ
@@ -18,36 +30,102 @@
  **/
 @Mapper
 public interface ComActDynDAO extends BaseMapper<ComActDynDO> {
-    @Select("<script> " +
-            "SELECT \n" +
-            "d.id,\n" +
-            "d.title,\n" +
-            "COUNT(u.id)readNum,\n" +
-            "d.`status`,\n" +
-            "d.`content`,\n" +
-            "d.is_topping,\n" +
-            "d.publish_at,\n" +
-            "d.create_at\n" +
-            "FROM\n" +
-            "com_act_dyn d\n" +
-            "LEFT JOIN com_act_dyn_user u ON d.id = u.dyn_id \n" +
-            "WHERE\n" +
-            "d.community_id=#{comActDynVO.communityId}\n" +
-            "<if test='comActDynVO.title != null and comActDynVO.title.trim() != &quot;&quot;'>" +
-            "AND d.title = #{comActDynVO.title} \n" +
-            " </if> " +
-            "<if test='comActDynVO.isTopping != null '>" +
-            "AND d.is_topping = #{comActDynVO.isTopping} \n" +
-            " </if> " +
-            "<if test='comActDynVO.status != null '>" +
-            "AND d.`status` = #{comActDynVO.status} \n" +
-            " </if> " +
-            "<if test='comActDynVO.publishAtBegin != null '>" +
-            "AND d.publish_at BETWEEN #{comActDynVO.publishAtBegin} \n" +
-            "AND #{comActDynVO.publishAtEnd}" +
-            " </if> " +
-            " group by d.id  "+
-            " order by d.is_topping desc, d.create_at desc "+
-            "</script>")
+//    @Select("<script> " + "SELECT  " + "d.id, " + "d.title, " + "IFNULL(u.readNum,0) readNum, " + "d.`status`, "
+//        + "d.`content`, " + "d.`cover`, " + "d.`type`, " + "d.`cover_mode`, d.jump_url,d.jump_type, " + "d.is_topping, " + "d.publish_at, "
+//        + "d.create_at, " + "cadt.`name` as typeName, " + "cadt.color as typeColor, " + "ca.name as communityName  "
+//        + "FROM " + "com_act_dyn d " + "LEFT JOIN ( select dyn_id,count(id) as readNum from com_act_dyn_user GROUP BY dyn_id  )  u ON d.id = u.dyn_id  "
+//        + "LEFT JOIN com_act_dyn_type as cadt ON cadt.id = d.type  "
+//        + "LEFT JOIN com_act ca ON d.community_id = ca.community_id  " + "WHERE 1=1  "
+//        + "<if test='comActDynVO.category != null '>" + "and d.category = #{comActDynVO.category} " + " </if> "
+//        + "<if test='comActDynVO.choice == 0 '>" + "and d.community_id = ${comActDynVO.communityId} " + " </if> "
+//        + "<if test='comActDynVO.areaCode !=null '>" + "and ca.area_code = ${comActDynVO.areaCode} " + " </if> "
+//        + "<if test='comActDynVO.title != null and comActDynVO.title.trim() != &quot;&quot;'>"
+//        + "AND d.title like concat(#{comActDynVO.title},'%')   " + " </if> "
+//        + "<if test='comActDynVO.isTopping != null '>" + "AND d.is_topping = #{comActDynVO.isTopping}  " + " </if> "
+//        + "<if test='comActDynVO.status != null '>" + "AND d.`status` = #{comActDynVO.status}  " + " </if> "
+//        + "<if test='comActDynVO.publishAtBegin != null '>" + "AND d.publish_at BETWEEN #{comActDynVO.publishAtBegin}  "
+//        + "AND #{comActDynVO.publishAtEnd}" + " </if> " + " group by d.id  "
+//        + " order by d.is_topping desc, d.create_at desc " + "</script>")
     IPage<ComActDynVO> pageDynamic(Page page, @Param("comActDynVO") ComActDynVO comActDynVO);
+
+    @Update("update com_act_dyn set `status`=1 WHERE `status`=0 and TIMESTAMPDIFF(MINUTE, SYSDATE(), publish_at)<=0 ")
+    int timedTaskDynStatus();
+
+//    @Select("<script> " + "SELECT  " + "d.id, " + "d.title, " + "COUNT(u.id)readNum, " + "d.`status`, "
+//        + "d.`content`, " + "d.`cover`, " + "d.`type`, " + "d.`cover_mode`, " + "d.is_topping, " + "d.publish_at, "
+//        + "d.create_at, " + "cadt.`name` as typeName, " + "ca.name as communityName  " + "FROM " + "com_act_dyn d "
+//        + "LEFT JOIN com_act_dyn_user u ON d.id = u.dyn_id  "
+//        + "LEFT JOIN com_act_dyn_type as cadt ON cadt.id = d.type  "
+//        + "LEFT JOIN com_act ca ON d.community_id = ca.community_id  " + "WHERE  "
+//        + "d.community_id = ${comActDynVO.communityId} "
+//        + "<if test='comActDynVO.title != null and comActDynVO.title.trim() != &quot;&quot;'>"
+//        + "AND d.title like concat(#{comActDynVO.title},'%')   " + " </if> "
+//        + "<if test='comActDynVO.isTopping != null '>" + "AND d.is_topping = #{comActDynVO.isTopping}  " + " </if> "
+//        + "<if test='comActDynVO.status != null '>" + "AND d.`status` = #{comActDynVO.status}  " + " </if> "
+//        + "<if test='comActDynVO.type != null '>" + "AND d.type = #{comActDynVO.type}  " + " </if> "
+//        + "<if test='comActDynVO.publishAtBegin != null '>" + "AND d.publish_at BETWEEN #{comActDynVO.publishAtBegin}  "
+//        + "AND #{comActDynVO.publishAtEnd}" + " </if> " + " group by d.id  "
+//        + " order by d.is_topping desc, d.create_at desc " + "</script>")
+    IPage<ComActDynVO> pageDynamicByAdmin(Page page, @Param("comActDynVO") ComActDynVO comActDynVO);
+
+    @Select("SELECT " + " count( cad.id ) AS dynTotal, "
+        + " (select count(id) from com_act_dyn where community_id = ${communityId} and create_at LIKE CONCAT(#{nowDate},'%')) as currentNum "
+        + "FROM " + " com_act_dyn AS cad  " + "WHERE " + " community_id = ${communityId}")
+    Map<String, Long> countByCommunityId(@Param("communityId") Long communityId, @Param("nowDate") String nowDate);
+
+    @Select("select create_at as startTime,(select create_at from com_act_dyn where community_id = ${communityId} order by create_at desc LIMIT 1 ) as endTime from com_act_dyn where community_id = ${communityId} order by create_at asc LIMIT 1")
+    DateScreenVO countByAvgCommunityId(@Param("communityId") Long communityId);
+
+    @Select("SELECT "
+        + "(SELECT COUNT(id) FROM com_act_dyn WHERE community_id = ${communityId} AND create_at < #{end}) AS dynTotal, "
+        + "(SELECT COUNT(id) FROM com_act_dyn WHERE community_id = ${communityId} AND #{start} < create_at AND create_at < #{end}) AS dynAdd "
+        + " FROM DUAL")
+    DynamicWorkVO countByTime(@Param("start") String start, @Param("end") String end,
+        @Param("communityId") Long communityId);
+
+    List<StatisticsCommVO> getIndexDynBaseData(@Param("communityId") Long communityId);
+
+    List<StatisticsCommVO> getDynAddPolylineData(@Param("communityId") Long communityId);
+
+    StatisticsCommVO getDynTotalPolylineDate(@Param("communityId") Long communityId, @Param("date") String date);
+
+    IPage<ComActDynVO> indexDynList(@Param("page") Page page, @Param("pageBaseDTO") PageBaseDTO pageBaseDTO);
+
+    /**
+     * 获取党建引领基础数据
+     * @param communityId
+     * @return
+     */
+    BigScreenPartyBuildIngStatisticsInfo getPartyBuildIngBaseData(@Param("communityId") Long communityId);
+
+    /**
+     * 分页获取党员活动
+     * @param pageBaseDTO
+     * @return
+     */
+    IPage<PartyBuildingActivityVO> pagePartyBuildIngAct(@Param("page") Page page, @Param("pageBaseDTO") PageBaseDTO pageBaseDTO);
+
+    /**
+     * 分页获取议事投票数据
+     * @param page
+     * @param pageBaseDTO
+     * @return
+     */
+    IPage<ComActDiscussVO> pagePartyBuildIngDiscuss(@Param("page") Page page, @Param("pageBaseDTO") PageBaseDTO pageBaseDTO);
+
+    /**
+     * 获取居民宣传记录
+     * @param communityId
+     * @param pageSize
+     * @return
+     */
+    List<ComActDynVO> getPartyBuildIngDynRecord(@Param("communityId") Long communityId, @Param("pageSize") Integer pageSize);
+
+    /**
+     * 获取巡查记录
+     * @param communityId
+     * @param pageSize
+     * @return
+     */
+    List<ComSwPatrolRecordVO> getPartyBuildIngPatrolRecord(@Param("communityId") Long communityId, @Param("pageSize") Integer pageSize);
 }

--
Gitblit v1.7.1