You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
685 B
25 lines
685 B
1 year ago
|
package com.yxt.finance;
|
||
|
|
||
|
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||
|
|
||
|
/**
|
||
|
* @author dimengzhe
|
||
|
*/
|
||
|
@SpringBootApplication(scanBasePackages = {
|
||
|
"com.yxt.finance.config",
|
||
|
"com.yxt.common.base.config",
|
||
|
"com.yxt.goods"
|
||
|
})
|
||
|
// 启用自带定时任务
|
||
|
@EnableScheduling
|
||
|
@EnableFeignClients(basePackages = {})
|
||
|
public class FinanceApplication {
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(FinanceApplication.class, args);
|
||
|
}
|
||
|
}
|