Commit 9e8b97a0 by JEECG开源社区 Committed by GitHub

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

fix query limit, use unlimit instead
parents c4df7a4d 36d60ec9
...@@ -20,7 +20,7 @@ public class MybatisPlusConfig { ...@@ -20,7 +20,7 @@ public class MybatisPlusConfig {
*/ */
@Bean @Bean
public PaginationInterceptor paginationInterceptor() { public PaginationInterceptor paginationInterceptor() {
return new PaginationInterceptor(); return new PaginationInterceptor().setLimit(-1);
} }
// /** // /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment