25 lines
489 B
Java
25 lines
489 B
Java
package com.parseSystem;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* @author 冯凯
|
|
* @version 1.0
|
|
* @description:
|
|
* @date 2023/11/25 15:34
|
|
*/
|
|
@SpringBootApplication
|
|
public class ParseSystemApplication {
|
|
|
|
/**
|
|
* 主方法
|
|
*
|
|
* @param args 命令行参数
|
|
*/
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(ParseSystemApplication.class,args);
|
|
}
|
|
|
|
}
|