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 { /** * 自定义分页 * * @param page * @param geomInfo * @return */ List selectGeomInfoPage(IPage page, GeomInfoVO geomInfo); /** * 保存空间信息 * @param geomInfoEntity * @return */ int saveGeoInfo(@Param("geomInfoEntity") GeomInfoEntity geomInfoEntity); /** * 查询空间信息列表 * @param ids * @return */ List getGeomInfoList(@Param("ids") String ids); }