配置类相关信息

# 微服务配置 ## Mybaits-plus配置 ```java @Configuration @MapperScan("com.junjie.bitmall.product.dao") // mapper接口 @EnableTransactionManagement // 开启事务 public class MyBatisConfig { @Bean public PaginationInterceptor mybatisPlusInterceptor() { return new PaginationInterceptor(); // 分页插件 } } ```