|
@@ -0,0 +1,19 @@
|
|
|
|
|
+package com.xindazhou.platform;
|
|
|
|
|
+
|
|
|
|
|
+import org.springframework.boot.SpringApplication;
|
|
|
|
|
+import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * Platform 服务启动类
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author 新大洲
|
|
|
|
|
+ */
|
|
|
|
|
+@SpringBootApplication
|
|
|
|
|
+public class PlatformServerApplication {
|
|
|
|
|
+
|
|
|
|
|
+ public static void main(String[] args) {
|
|
|
|
|
+ SpringApplication.run(PlatformServerApplication.class, args);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|
|
|
|
|
+
|