| | |
| | | package org.springblade.modules.grid.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.doorplateAddress.entity.DoorplateAddressEntity; |
| | | import org.springblade.modules.grid.entity.GridEntity; |
| | | import org.springblade.modules.grid.excel.GridExcel; |
| | | import org.springblade.modules.grid.excel.GridmanExcel; |
| | |
| | | * @param houseCode |
| | | * @return |
| | | */ |
| | | GridVO getGridDetailByHouseCode(String houseCode); |
| | | GridVO getPlaceGridDetailByHouseCode(String houseCode); |
| | | |
| | | /** |
| | | * 根据用户id(网格员)查询对应的房屋地址code |
| | |
| | | /** |
| | | * 空间分析 |
| | | */ |
| | | Object spatialAnalysis(); |
| | | Object spatialAnalysis(DoorplateAddressEntity addressEntity); |
| | | |
| | | /** |
| | | * 空间分析 |
| | | */ |
| | | List<GridEntity> spatialAnalysis(String point); |
| | | |
| | | /** |
| | | * 根据参数查询网格数据 |
| | |
| | | * @return |
| | | */ |
| | | Object getGridList(GridVO grid); |
| | | |
| | | /** |
| | | * 查询小区网格绑定 |
| | | * @param aoiCode 小区aoiCode |
| | | * @return |
| | | */ |
| | | List<GridVO> getGridListByAoiCode(String aoiCode); |
| | | |
| | | /** |
| | | * 查询对应网格人对应的网格 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | GridEntity getGridByUserId(Long userId); |
| | | |
| | | /** |
| | | * 根据网格名称,社区名称查询对应的网格 |
| | | * @param gridName |
| | | * @param communityName |
| | | * @return |
| | | */ |
| | | GridEntity getGridByNames(String gridName, String communityName); |
| | | |
| | | /** |
| | | * 查询用户对应的网格编号集合 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | List<String> getGridListByUserId(Long userId); |
| | | } |