| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.panzhihua.common.model.dtos.community.PageComActDTO; |
| | | import com.panzhihua.common.model.dtos.community.switchs.SearchCommunityDTO; |
| | | import com.panzhihua.common.model.dtos.user.PageFeedBackDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComActVO; |
| | |
| | | * @return 社区集合 按照创建顺序倒序排列 |
| | | */ |
| | | R listCommunityAll(); |
| | | /** |
| | | * 删除社区 |
| | | * @param communityId 社区id |
| | | * @return 删除结果 |
| | | */ |
| | | R delectCommunity(Long communityId); |
| | | |
| | | /** |
| | | * 综治后台-查询社区列表 |
| | | * @return 社区列表 |
| | | */ |
| | | R getCommunityLists(); |
| | | |
| | | /** |
| | | * 查询社区所有列表 |
| | | * @return 社区列表 |
| | | */ |
| | | R getCommunityAllList(); |
| | | |
| | | /** |
| | | * 根据名字查询所有社区列表 |
| | | * @param name 社区名字 |
| | | * @return 社区列表 |
| | | */ |
| | | R communitySwitchSearchList(String name); |
| | | |
| | | /** |
| | | * 根据经纬度以及距离搜索附近社区列表 |
| | | * @param communityDTO 请求参数 |
| | | * @return 社区列表 |
| | | */ |
| | | R communitySwitchSearchDistanceList(SearchCommunityDTO communityDTO); |
| | | } |