|  |  | 
 |  |  | package com.moral.api.config.mybatis; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; | 
 |  |  | import com.baomidou.mybatisplus.annotation.DbType; | 
 |  |  | import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; | 
 |  |  | import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; | 
 |  |  | import org.springframework.context.annotation.Bean; | 
 |  |  | import org.springframework.context.annotation.Configuration; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  | 
 |  |  |      * 分页插件 | 
 |  |  |      */ | 
 |  |  |     @Bean | 
 |  |  |     public PaginationInterceptor paginationInterceptor() { | 
 |  |  |         PaginationInterceptor page = new PaginationInterceptor(); | 
 |  |  |         return page; | 
 |  |  |     public MybatisPlusInterceptor mybatisPlusInterceptor(){ | 
 |  |  |         MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); | 
 |  |  |         interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); | 
 |  |  |         return interceptor; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  |