沙钢智慧能源系统后端代码
liriming
3 天以前 cf56ebbecf2c8fc695e95c4d84949182260ee082
提交 | 用户 | 时间
97edd7 1 package com.iailab.module.shasteel;
H 2
3 import org.springframework.boot.SpringApplication;
4 import org.springframework.boot.autoconfigure.SpringBootApplication;
5
6 /**
7  * 项目的启动类
8  *
9  * @author iailab
10  */
11 @SpringBootApplication
12 public class ShasteelServerApplication {
13
14     public static void main(String[] args) {
15         SpringApplication.run(ShasteelServerApplication.class, args);
16     }
17
18 }