ci: fix typo.

This commit is contained in:
CaptainB 2023-09-15 16:57:33 +08:00 committed by 刘瑞斌
parent 988de5f9f7
commit 1880e03b3d
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ public class PageUtils {
try {
Pager<T> pager = new Pager<>();
pager.setList(list);
pager.setPageSize(page.getPages());
pager.setPageSize(page.getPageSize());
pager.setCurrent(page.getPageNum());
pager.setTotal(page.getTotal());
return pager;