审查视图

src/main/java/com/tianbo/warehouse/WarehouseApplication.java 739 字节
1 2 3 4
/**
 * @author mrz
 * @email 17966059@qq.com
 */
朱兆平 authored
5 6
package com.tianbo.warehouse;
7
import org.mybatis.spring.annotation.MapperScan;
朱兆平 authored
8 9 10 11
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.scheduling.annotation.EnableScheduling;
12 13
import org.springframework.transaction.annotation.EnableTransactionManagement;
朱兆平 authored
14 15
@SpringBootApplication
@EnableScheduling
zhangFan authored
16
@EnableEurekaClient
17
@EnableTransactionManagement
18
@MapperScan("com.tianbo.warehouse.dao")
朱兆平 authored
19 20 21 22 23 24 25 26
public class WarehouseApplication {

	public static void main(String[] args) {
		SpringApplication.run(WarehouseApplication.class, args);
	}

}