rain
2024-03-23 35a8fd809547c3e5c0293c03a0a50096e658de79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dji.sample.patches.dao;
 
import com.dji.sample.patches.model.PatchesEntity;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
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,tuban ,dklx from tb_lot_info")
List<PatchesEntity> limitGet(@Param("id") Integer id, @Param("bsm") String bsm,
                             @Param("tuban") String tuban, @Param("dklx") String dklx);
}