package com.cdzy.operations.mapper; import com.mybatisflex.core.BaseMapper; import com.cdzy.operations.model.entity.EbikeBikeInfo; import org.apache.ibatis.annotations.Param; import org.postgresql.geometric.PGpolygon; import java.util.List; /** * 映射层。 * * @author attiya * @since 2025-10-17 */ public interface EbikeBikeInfoMapper extends BaseMapper { /** * 查询多边形范围内的车辆 * @param polygon 多边形 * @return 列表 */ List selectPolygonGeometry(@Param("polygon") PGpolygon polygon); }