| | |
| | | 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; |
| | | import org.springblade.modules.place.excel.NinePlaceExcel; |
| | | import org.springblade.modules.place.excel.PlaceAndRelExcel; |
| | | import org.springblade.modules.place.excel.PlaceExcel; |
| | | import org.springblade.modules.place.excel.ImportPlaceExcel; |
| | | import org.springblade.modules.place.vo.PlaceVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | |
| | | * @param data |
| | | * @param isCovered |
| | | */ |
| | | void importPlace(List<PlaceExcel> data, Boolean isCovered); |
| | | String importPlace(List<ImportPlaceExcel> data, Boolean isCovered); |
| | | |
| | | /** |
| | | * 场所(商超)导入 |
| | |
| | | * 场所警务网格处理 |
| | | */ |
| | | Object placeJwGridCodeHandle(); |
| | | |
| | | /** |
| | | * 场所综治网格处理 |
| | | */ |
| | | Object placeGridCodeHandle(); |
| | | |
| | | /** |
| | | * 场所二维码绑定处理 |
| | | */ |
| | | Object placeDoorBindHandle(); |
| | | |
| | | /** |
| | | * 企业商超列表查询 |
| | | */ |
| | | IPage<PlaceVO> selectMallPage(IPage<PlaceVO> page, PlaceVO place); |
| | | |
| | | /** |
| | | * 位置绑定 |
| | | * @param place |
| | | */ |
| | | void policePositionHandle(PlaceVO place); |
| | | |
| | | /** |
| | | * 警格绑定 |
| | | * @param place |
| | | */ |
| | | void jwGridCodeBind(PlaceVO place); |
| | | |
| | | /** |
| | | * 查询所有场所数据 |
| | | * @return |
| | | */ |
| | | List<PlaceVO> getAllList(int i,int size); |
| | | /** |
| | | * 查询所有场所数据总数 |
| | | * @return |
| | | */ |
| | | int getAllListTotal(); |
| | | |
| | | /** |
| | | * 查询对应的社区编号 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | String getCommunityCode(Long id); |
| | | |
| | | /** |
| | | * 导出场所信息 |
| | | * @param place |
| | | * @return |
| | | */ |
| | | List<ExportPlaceExcel> exportPlaceList(PlaceVO place); |
| | | |
| | | /** |
| | | * // 查询附近场所 |
| | | * @param lat |
| | | * @param lng |
| | | * @return |
| | | */ |
| | | List<PlaceVO> getNearbyPlaceList(String lat, String lng); |
| | | } |