pagehelper / Mybatis-PageHelper

Mybatis通用分页插件
https://mybatis.io
MIT License
12.21k stars 3.13k forks source link

PageInfo重载一个of方法,支持手动指定count返回分页信息 #797

Closed yesAnd92 closed 10 months ago

yesAnd92 commented 10 months ago
  1. 业务中有为提高性能需要缓存记录总数的场景,新增一个手动指定总记录数获取分页信息,可以借助PageInfo方便是实现分页。resovle #788 public static <T> PageInfo<T> of(long total, List<? extends T> list) {}

  2. 已经添加方法对应的测试用例。

abel533 commented 10 months ago

参数调整顺序更一致,但是和另一个使用int参数的容易混淆。