docs: 完善注释

This commit is contained in:
Ray.Hao
2025-01-14 20:17:18 +08:00
parent 694cd2f190
commit e43883f7c2
2 changed files with 15 additions and 16 deletions

View File

@@ -3,17 +3,16 @@ package com.youlai.boot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.scheduling.annotation.EnableScheduling;
/**
* 应用启动类
*
* @author Ray
* @author Ray.Hao
* @since 0.0.1
*/
@SpringBootApplication
@ConfigurationPropertiesScan // 开启配置属性绑定
@EnableScheduling // 开启定时任务
// @EnableScheduling // 开启定时任务
public class YouLaiBootApplication {
public static void main(String[] args) {