| | |
| | | import org.springblade.modules.yw.entity.GeomInfoEntity; |
| | | import org.springblade.modules.yw.vo.GeomInfoVO; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 空间信息表 服务类 |
| | |
| | | * @return |
| | | */ |
| | | R importShpZip(MultipartFile file); |
| | | |
| | | /** |
| | | * 导出 空间信息shp zip 包 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | List<GeomInfoVO> getGeomInfoList(String ids); |
| | | |
| | | /** |
| | | * 导入应急空间点位数据 |
| | | * @param file |
| | | * @return |
| | | */ |
| | | R importSpaceShpZip(MultipartFile file); |
| | | |
| | | /** |
| | | * 导入 geojson 文件解析空间信息 |
| | | * @param file |
| | | * @return |
| | | */ |
| | | R importGeoJson(MultipartFile file); |
| | | } |