rain
2024-03-23 d2108ee735894d73bf655bda1651ecaefbc4c09d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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.opengis.geometry.coordinate.Polygon;
 
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);
}