package org.springblade.modules.yw.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.springblade.core.tool.api.R;
|
import org.springblade.modules.yw.entity.GeomInfoEntity;
|
import org.springblade.modules.yw.vo.GeomInfoVO;
|
import org.springframework.web.multipart.MultipartFile;
|
import java.util.List;
|
|
/**
|
* 空间信息表 服务类
|
*
|
* @author zhongrj
|
* @since 2024-11-05
|
*/
|
public interface IGeomInfoService extends IService<GeomInfoEntity> {
|
/**
|
* 自定义分页
|
*
|
* @param page
|
* @param geomInfo
|
* @return
|
*/
|
IPage<GeomInfoVO> selectGeomInfoPage(IPage<GeomInfoVO> page, GeomInfoVO geomInfo);
|
|
/**
|
* 导入 shp zip 包文件解析空间信息
|
* @param file
|
* @return
|
*/
|
R importShpZip(MultipartFile file);
|
|
/**
|
* 导出 空间信息shp zip 包
|
* @param ids
|
* @return
|
*/
|
List<GeomInfoVO> getGeomInfoList(String ids);
|
|
/**
|
* 导入应急空间点位数据
|
* @param file
|
* @return
|
*/
|
R importSpaceShpZip(MultipartFile file);
|
}
|