rain
2024-03-23 24b0b79158fc499f2e2f6b67e169b3b4dff97569
1
2
3
4
5
6
7
8
9
10
11
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<PatchesEntity> limitGet(@Param("id") Integer id, @Param("dkbh") String dkbh, @Param("dkfw") String dkfw);
}