| | |
| | | import com.dji.sample.patches.model.PatchesEntity; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.opengis.geometry.coordinate.Polygon; |
| | | import org.locationtech.jts.geom.Geometry; |
| | | import org.springframework.data.geo.Polygon; |
| | | |
| | | import java.sql.Array; |
| | | import java.util.List; |
| | | |
| | | public interface PatchesMapper { |
| | | @Select("select id ,bsm,dkfw ,dklx from tb_lot_info") |
| | | List<PatchesEntity> limitGet(@Param("id") Integer id, @Param("bsm") String bsm, |
| | | @Param("dkfw") Polygon dkfw,@Param("dklx") String dklx); |
| | | @Param("dkfw") String dkfw, @Param("dklx") String dklx); |
| | | } |