forked from kidgrow-microservices-platform

zhaoxiaohao
2020-10-22 e64ef023096f7ddc4f23a84e9dd0d1d82e1b9c77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.kidgrow.order.config;
 
import com.kidgrow.db.config.DefaultMybatisPlusConfig;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Configuration;
 
/**
 * @author liuke
 * @description
 * @date 2019/11/22
 */
@Configuration
@MapperScan({"com.kidgrow.order.mapper*"})
public class MybatisPlusConfig extends DefaultMybatisPlusConfig {
 
}