zrj
2024-11-05 b8f2c19b869986efa519f1846b63b11378147861
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
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;
 
/**
 * 空间信息表 服务类
 *
 * @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);
}