| | |
| | | package org.springblade.modules.place.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.common.node.TreeStringNode; |
| | | import org.springblade.modules.place.entity.PlaceEntity; |
| | | import org.springblade.modules.place.excel.ExportPlaceExcel; |
| | |
| | | * @return |
| | | */ |
| | | IPage<PlaceVO> selectPlacePage(IPage<PlaceVO> page, PlaceVO place); |
| | | |
| | | |
| | | IPage<PlaceVO> getPlacePage(IPage<PlaceVO> page, PlaceVO place); |
| | | |
| | | /** |
| | | * 查询场所集合信息 |
| | |
| | | * @return |
| | | */ |
| | | List<ExportPlaceExcel> exportPlaceList(PlaceVO place); |
| | | |
| | | /** |
| | | * // 查询附近场所 |
| | | * @param lat |
| | | * @param lng |
| | | * @return |
| | | */ |
| | | List<PlaceVO> getNearbyPlaceList(String lat, String lng); |
| | | |
| | | /** |
| | | * 更新场所颜色 |
| | | * @param placeId |
| | | * @param color |
| | | * @return |
| | | */ |
| | | boolean updatePoiLabelColor(Long placeId, String color); |
| | | } |