| 1234567891011121314151617181920212223242526 |
- package cn.gov.customs.wxjy;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.cloud.openfeign.EnableFeignClients;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.scheduling.annotation.EnableScheduling;
- import org.springframework.tsf.annotation.EnableTsf;
- import static org.springframework.boot.SpringApplication.run;
- /**
- * 启动类 content
- *
- * @author chuxianming
- * @since 2024-06-14 11:16:12
- */
- @EnableTsf
- @SpringBootApplication
- @EnableFeignClients(basePackages = "cn.gov.customs")
- @ComponentScan(basePackages = "cn.gov.customs")
- @EnableScheduling
- public class Application {
- public static void main(String[] args) {
- run(Application.class, args);
- }
- }
|