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
674 B

1 year ago
package com.yxt.user;
1 year ago
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.goods.config",
"com.yxt.common.base.config",
"com.yxt.goods"
})
// 启用自带定时任务
@EnableScheduling
@EnableFeignClients(basePackages = {})
1 year ago
public class UserApplication {
1 year ago
public static void main(String[] args) {
1 year ago
SpringApplication.run(UserApplication.class, args);
1 year ago
}
}