Mybatis的参数parameterType的类型

接口名称


List findListByNos(List nos);
Info findById(String id);
List findByEntityWithPagination(Info info, int offset, int count);//分页(第一个是对象,第二个是pageNo,第三个是pageSize)
List findByMap(Map map);
List findByEntity(Info info);

xml配置


     

  
 



   
   


你可能感兴趣的:(Mybatis)