zrj
2024-11-08 4dc18cd2c9d0c44cf8d84cd4687564f26e294eab
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
package org.springblade.modules.yw.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.yw.entity.GeomInfoEntity;
import org.springblade.modules.yw.vo.GeomInfoVO;
import java.util.List;
 
/**
 * 空间信息表 Mapper 接口
 *
 * @author BladeX
 * @since 2024-11-05
 */
public interface GeomInfoMapper extends BaseMapper<GeomInfoEntity> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param geomInfo
     * @return
     */
    List<GeomInfoVO> selectGeomInfoPage(IPage page, GeomInfoVO geomInfo);
 
    /**
     * 保存空间信息
     * @param geomInfoEntity
     * @return
     */
    int saveGeoInfo(@Param("geomInfoEntity") GeomInfoEntity geomInfoEntity);
 
    /**
     * 查询空间信息列表
     * @param ids
     * @return
     */
    List<GeomInfoVO> getGeomInfoList(@Param("ids") String ids);
}