选煤厂生产管理平台后台代码
dongyukun
2024-12-10 3f07ab2e03e501ae55d1d1b0d031daf50c8e13e5
提交 | 用户 | 时间
f968b4 1 package com.iailab.module.pms;
H 2
3 import org.springframework.boot.SpringApplication;
4 import org.springframework.boot.autoconfigure.SpringBootApplication;
7e21bc 5 import org.springframework.context.annotation.ComponentScan;
f968b4 6
H 7 /**
8  * 项目的启动类
9  *
10  * @author iailab
11  */
7e21bc 12 @ComponentScan(basePackages = {"com.iailab.iems.common", "com.iailab.module.pms"})
f968b4 13 @SpringBootApplication
H 14 public class XmcPmsServerApplication {
15
16     public static void main(String[] args) {
17         SpringApplication.run(XmcPmsServerApplication.class, args);
18     }
19
20 }