mybatisplus自定义sql使用分页查询

SFAMapper

@Mapper

public interface SFAMapper extends  BaseMapper{

IPage  pageRepaying(IPage page,@Param("id") long id);

}

SFAMapper.xml中

mybatisplus自定义sql手写分页时,注意:

1.mapper中返回值使用Ipage或page接收

2.mapper中Ipage或page作为参数绑定,参数绑定必须在第一个参数,否则不会分页查询

3.mybatisplus会做代理查询sql中不用加limit分页函数,mybatis会查2次,一次查总条数,一次添加上limit按分页查数据

你可能感兴趣的:(mybatis,sql,mybatis,java)