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