14 lines
431 B
Java
14 lines
431 B
Java
package com.guwan.backend.config;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
public class MybatisPlusConfig {
|
|
|
|
// @Bean
|
|
// public MybatisPlusInterceptor mybatisPlusInterceptor() {
|
|
// MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
|
|
// interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
|
|
// return interceptor;
|
|
// }
|
|
} |