From de91c84954157bb9f8b6d938cbe0b1b51fb6e65d Mon Sep 17 00:00:00 2001
From: CeDo <cedoogle@gmail.com>
Date: 星期五, 07 五月 2021 15:23:57 +0800
Subject: [PATCH] bugfixed:新增便民服务商家 报错

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActDynService.java |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActDynService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActDynService.java
index 9f684bd..00eeda5 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActDynService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActDynService.java
@@ -1,6 +1,9 @@
 package com.panzhihua.service_community.service;
 
 import com.baomidou.mybatisplus.extension.service.IService;
+import com.panzhihua.common.model.vos.R;
+import com.panzhihua.common.model.vos.community.ComActDynVO;
+import com.panzhihua.common.model.vos.community.ComActEasyPhotoVO;
 import com.panzhihua.service_community.model.dos.ComActDynDO;
 
 /**
@@ -10,4 +13,41 @@
  * @create: 2020-12-07 14:28
  **/
 public interface ComActDynService extends IService<ComActDynDO> {
+    /**
+     * 分页查询社区动态
+     * @param comActDynVO 查询参数
+     * @return 动态集合
+     */
+    R pageDynamic(ComActDynVO comActDynVO);
+    /**
+     * 社区动态详情
+     * @param id 动态id
+     * @return 详情
+     */
+    R detailDynamic(Long id);
+    /**
+     * 新增社区动态浏览记录
+     * @param id 动态主键
+     * @param userId 登录用户id
+     * @return 新增结果
+     */
+    R addDynamicUser(Long id, Long userId);
+    /**
+     * 定时任务刷新社区动态置顶状态
+     * @return 刷新结果
+     */
+    R timedTaskDynIstopping();
+    /**
+     * 定时任务刷新社区动态发布状态
+     * @return 刷新结果
+     */
+    R timedTaskDynStatus();
+
+    /**
+     * 管理后台分页查询社区动态
+     * @param comActDynVO 查询参数
+     * @return 动态集合
+     */
+    R pageDynamicByAdmin(ComActDynVO comActDynVO);
+
 }

--
Gitblit v1.7.1