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 java.util.List; public interface PatchesMapper { @Select("select id ,dkbh,dkfw from tb_lot_info") List limitGet(@Param("id") Integer id, @Param("dkbh") String dkbh, @Param("dkfw") String dkfw); }