【db】整理注释

pull/3/head
fengshuonan 2020-12-24 13:17:35 +08:00
parent 64a623c4f3
commit 182ae14591
1 changed files with 5 additions and 0 deletions

View File

@ -22,12 +22,17 @@ public class GunsMyBatisPlusAutoConfiguration {
/** /**
* *
*
* @author fengshuonan
* @date 2020/12/24 13:13
*/ */
@Bean @Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() { public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
// 使用分页插插件 // 使用分页插插件
interceptor.addInnerInterceptor(paginationInterceptor()); interceptor.addInnerInterceptor(paginationInterceptor());
return interceptor; return interceptor;
} }