初始化仓库
parent
6d5d19aa53
commit
dcda4efc7f
|
@ -0,0 +1,16 @@
|
||||||
|
package com.muyu;
|
||||||
|
|
||||||
|
import org.mybatis.spring.annotation.MapperScan;
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||||||
|
|
||||||
|
@SpringBootApplication
|
||||||
|
@EnableFeignClients
|
||||||
|
@MapperScan(value = "com.muyu.mapper")
|
||||||
|
public class CarSystemApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(CarSystemApplication.class,args);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue