From e218e0ef258ba5205a312df54b7f6bc8d50ef5c8 Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期五, 15 一月 2021 16:24:35 +0800 Subject: [PATCH] bug修复 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java index 22fe613..d58d051 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java @@ -580,5 +580,49 @@ @PostMapping("listadvjump") R listAdvjump(); + /** + * 社区管理后台数据看板 代办事件 + * @param communityId 社区id + * @param userId + * @return 代办事件列表 + */ + @PostMapping("indexdatacommunitybackstage") + R indexDataCommunityBackstage(@RequestParam("communityId") Long communityId, @RequestParam("userId")Long userId); + + /** + * 删除社区 + * @param communityId 社区id + * @return 删除结果 + */ + @PostMapping("delectcommunity") + R delectCommunity(@RequestParam("communityId") Long communityId); + + /** + * 定时任务刷新社区动态置顶状态 + * @return + */ + @PostMapping("timedtaskdynistopping") + R timedTaskDynIstopping(); + + /** + * 定时任务刷新社区动态发布状态 + * @return + */ + @PostMapping("timedtaskdynstatus") + R timedTaskDynStatus(); + + /** + * 定时任务查询所有要取消的社区活动 + * @return 社区活动集合 + */ + @PostMapping("timedtaskactactivity") + R timedTaskActActivity(); + + /** + * 定时任务刷新社区活动的各个状态 除取消外 + * @return + */ + @PostMapping("timedtaskactactivityall") + R timedTaskActActivityAll(); } -- Gitblit v1.7.1