Ver Fonte

关闭分页合理化

dos há 3 meses atrás
pai
commit
0ab7b84fe4

+ 2 - 2
game-common/src/main/java/com/game/common/utils/PageUtils.java

@@ -21,8 +21,8 @@ public class PageUtils extends PageHelper
         Integer pageNum = pageDomain.getPageNum();
         Integer pageSize = pageDomain.getPageSize();
         String orderBy = SqlUtil.escapeOrderBySql(pageDomain.getOrderBy());
-        Boolean reasonable = pageDomain.getReasonable();
-        PageHelper.startPage(pageNum, pageSize, orderBy).setReasonable(reasonable);
+//        Boolean reasonable = pageDomain.getReasonable();
+        PageHelper.startPage(pageNum, pageSize, orderBy);
     }
 
     /**