|
|
@@ -1,8 +1,6 @@
|
|
|
package org.springblade.salesPart.config;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.DbType;
|
|
|
-import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
|
|
|
-import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
|
|
|
+
|
|
|
import com.github.pagehelper.PageInterceptor;
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
@@ -19,17 +17,6 @@ public class PageHelperConfig {
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * MybatisPlus分页插件
|
|
|
- */
|
|
|
- @Bean
|
|
|
- public MybatisPlusInterceptor mybatisPlusInterceptor() {
|
|
|
- MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
|
|
|
- mybatisPlusInterceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
|
|
|
- return mybatisPlusInterceptor;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
* PageHelper分页插件
|
|
|
*/
|
|
|
@Bean
|