فهرست منبع

Merge pull request #588 from liudonghua123/fix-query-limit-500

fix query limit, use unlimit instead
JEECG开源社区 5 سال پیش
والد
کامیت
9e8b97a0d9
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/config/MybatisPlusConfig.java

+ 1 - 1
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/config/MybatisPlusConfig.java

@@ -20,7 +20,7 @@ public class MybatisPlusConfig {
      */
     @Bean
     public PaginationInterceptor paginationInterceptor() {
-        return new PaginationInterceptor();
+        return new PaginationInterceptor().setLimit(-1);
     }
     
 //    /**