huanghongfa
2021-01-07 ae33fef700e5d2558dffb03c8f66358da2545791
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -580,5 +580,27 @@
    @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();
}