<dependency>
<groupId>show.lmm</groupId>
<artifactId>pagination-spring-boot-starter</artifactId>
<version>1.0</version>
</dependency>
implementation 'show.lmm:pagination-spring-boot-starter:1.0'
//初始化分页参数
PaginationHelper.init(1,5);
//多表联查时,建议手写查询总数量sql性能更佳
PaginationHelper.init(2,10,"select 999;");
//分页结果
Page<TestInfo> result = testMapper.listByStatus(1);