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); int saveGeoInfo(@Param("geomInfoEntity") GeomInfoEntity geomInfoEntity); }