From eba96de6b9918d62923b79b192f4d0bd4fb0f686 Mon Sep 17 00:00:00 2001
From: yuejunhao <2083483352@qq.com>
Date: 星期五, 05 一月 2024 15:44:46 +0800
Subject: [PATCH] 单条数据显示详情的英文字段名改为中文字段名修改
---
north-glass-erp/src/main/java/com/example/erp/ErpApplication.java | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/ErpApplication.java b/north-glass-erp/src/main/java/com/example/erp/ErpApplication.java
new file mode 100644
index 0000000..066700f
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/ErpApplication.java
@@ -0,0 +1,20 @@
+package com.example.erp;
+
+import com.example.erp.tools.netty.NettyServer;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.cache.annotation.EnableCaching;
+
+//springboot 鍚姩鍏ュ彛
+@SpringBootApplication
+@EnableCaching
+public class ErpApplication {
+ public static void main(String[] args) {
+ SpringApplication.run(ErpApplication.class, args);
+ try {
+ new NettyServer(12345).start();
+ } catch (Exception e) {
+ throw new RuntimeException(e);
+ }
+ }
+}
--
Gitblit v1.8.0