zrj
2024-11-08 6d02d0adce5004ef244fc8e4f0186ed922b20e36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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);
}