package com.thhy;
|
|
import org.mybatis.spring.annotation.MapperScan;
|
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
@SpringBootApplication
|
@MapperScan(basePackages = {"com.thhy.materials.modules.*.*.mapper"})
|
@EnableFeignClients
|
@EnableScheduling
|
public class MaterialsApplication {
|
|
public static void main(String[] args) {
|
SpringApplication.run(MaterialsApplication.class,args);
|
}
|
}
|