2023-01-06 15:17:37 +08:00
|
|
|
package com.ai.da;
|
|
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2025-04-08 17:29:10 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
2024-01-08 13:02:50 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2023-01-06 15:17:37 +08:00
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
|
@SpringBootApplication
|
2024-01-08 13:02:50 +08:00
|
|
|
@EnableScheduling
|
2025-04-08 17:29:10 +08:00
|
|
|
@EnableAsync
|
2023-01-06 15:17:37 +08:00
|
|
|
public class AiDaApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(AiDaApplication.class, args);
|
|
|
|
|
log.info("AiDaApplication 启动完成!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|