提交 | 用户 | 时间 | ||
f968b4 | 1 | package com.iailab.module.pms; |
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 XmcPmsServerApplication { | |
13 | ||
14 | public static void main(String[] args) { | |
15 | SpringApplication.run(XmcPmsServerApplication.class, args); | |
16 | } | |
17 | ||
18 | } |