|
|
@@ -1,6 +1,5 @@
|
|
1
|
1
|
package com.chinaitop;
|
|
2
|
2
|
|
|
3
|
|
-import com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration;
|
|
4
|
3
|
import org.mybatis.spring.annotation.MapperScan;
|
|
5
|
4
|
import org.springframework.boot.SpringApplication;
|
|
6
|
5
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
@@ -11,7 +10,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
11
|
10
|
@EnableEurekaClient
|
|
12
|
11
|
@EnableFeignClients
|
|
13
|
12
|
@EnableDiscoveryClient
|
|
14
|
|
-@SpringBootApplication(exclude = PageHelperAutoConfiguration.class)//配置mybatis的配置文件使用,否则报多个分页插件
|
|
|
13
|
+@SpringBootApplication//配置mybatis的配置文件使用,否则报多个分页插件
|
|
15
|
14
|
@MapperScan(basePackages = {"com.chinaitop.depot.*.mapper"})
|
|
16
|
15
|
public class DepotQualitycheckApplication {
|
|
17
|
16
|
|