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