AdaKing88
2023-08-21 23258c585a626b15d770459870a8b24763cf540c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.tairui.app.cim.config;
 
import com.github.pagehelper.PageHelper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class MyBatisPlusConfig {
 
    @Bean
    public PageHelper pageHelper() {
        PageHelper pageHelper  =  new PageHelper();
 
        return pageHelper;
    }
}