From 3e9ccc47f511c0f1bb018b986c013a0105715ce4 Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期四, 14 一月 2021 13:51:08 +0800 Subject: [PATCH] 社区活动编辑删除奖品 --- 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