zhyManagement/src/main/java/com/management/ZhyManagementApplication.java

17 lines
414 B
Java
Raw Normal View History

2025-06-11 13:58:36 +08:00
package com.management;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@Slf4j
public class ZhyManagementApplication {
public static void main(String[] args) {
SpringApplication.run(ZhyManagementApplication.class, args);
log.info("程序启动成功");
}
}