分页配置统一

This commit is contained in:
2024-06-27 14:21:33 +08:00
parent d8305159bd
commit e91636a188
14 changed files with 24 additions and 60 deletions

View File

@@ -1,13 +0,0 @@
package com.chaozhanggui.system.cashierservice.util;
import com.github.pagehelper.PageHelper;
public class PageHelperUtil {
/**
* 解决页数超限 仍返回数据问题
*/
public static void startPage(int page, int pageSize) {
PageHelper.startPage(page, pageSize, true, false, false);
}
}