forked from kidgrow-microservices-platform

zhaoxiaohao
2020-08-12 3dcb4e0ebfd43190957f556d886917b2a2ffa064
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.kidgrow.filecenter.config;
 
import com.kidgrow.db.config.DefaultMybatisPlusConfig;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Configuration;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: mybatis-plus配置<br>
 * @Project: <br>
 * @CreateDate: Created in 2020/2/18 11:24 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
@Configuration
@MapperScan({"com.kidgrow.filecenter.mapper*"})
public class MybatisPlusConfig extends DefaultMybatisPlusConfig {
 
}