rain
2024-03-23 3d92c321b2159983fda398d2d5a2b2b93737c84d
src/main/java/com/dji/sample/patches/dao/PatchesMapper.java
@@ -3,14 +3,9 @@
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);
    @Select("select id ,dkbh,dkfw  from tb_lot_info")
    List<PatchesEntity> limitGet(@Param("id") Integer id, @Param("dkbh") String dkbh, @Param("dkfw") String dkfw);
}