| | |
| | | @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(); |
| | | |
| | | /** |
| | | * 其他建筑详情 |
| | | * @param id 主键id |
| | | * @return 建筑内容 |
| | | */ |
| | | @PostMapping("detailotherbuild") |
| | | R detailOtherbuild(@RequestParam("id")Long id); |
| | | |
| | | /** |
| | | * 编辑其他建筑 |
| | | * @param comMngStructOtherBuildVO 编辑内容 |
| | | * @return 编辑结果 |
| | | */ |
| | | @PostMapping("putotherbuild") |
| | | R putOtherbuild(@RequestBody ComMngStructOtherBuildVO comMngStructOtherBuildVO); |
| | | |
| | | /** |
| | | * 删除其他建筑 |
| | | * @param id 主键 |
| | | * @return 删除结果 |
| | | */ |
| | | @PostMapping("deleteotherbuild") |
| | | R deleteOtherbuild(@RequestParam("id")Long id); |
| | | } |