Interface SelectRowBoundsMapper<T>

Type Parameters:
T - 泛型
All Known Subinterfaces:
Mapper<T>, RowBoundsMapper<T>

public interface SelectRowBoundsMapper<T>
通用Mapper接口,查询
Since:
Java 17+
Author:
Kimi Liu
  • Method Summary

    Modifier and Type
    Method
    Description
    selectByRowBounds(T record, org.apache.ibatis.session.RowBounds rowBounds)
    根据实体属性和RowBounds进行分页查询
  • Method Details

    • selectByRowBounds

      @SelectProvider(type=BasicSelectProvider.class, method="dynamicSQL") List<T> selectByRowBounds(T record, org.apache.ibatis.session.RowBounds rowBounds)
      根据实体属性和RowBounds进行分页查询
      Parameters:
      record - 记录值
      rowBounds - RowBounds
      Returns:
      the list