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(); }