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.
23 lines
645 B
23 lines
645 B
![]()
1 year ago
|
package com.yxt.crm;
|
||
|
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||
|
|
||
|
@SpringBootApplication(scanBasePackages = {
|
||
|
"com.yxt.crm.config",
|
||
|
"com.yxt.common.base.config",
|
||
|
"com.yxt.crm"
|
||
|
})
|
||
|
// 启用自带定时任务
|
||
|
@EnableScheduling
|
||
|
@EnableFeignClients(basePackages = {})
|
||
|
public class YxtCrmApplication {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(YxtCrmApplication.class, args);
|
||
|
}
|
||
|
|
||
|
}
|