From 88dc5e10b9cec4a2179d93e68c9918e4f1081a9b Mon Sep 17 00:00:00 2001
From: wangw <1594593906@qq.com>
Date: Fri, 7 Feb 2025 14:12:01 +0800
Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=BF=97=E9=85=8D=E7=BD=AE=20pom=20?=
=?UTF-8?q?=E9=85=8D=E7=BD=AE=20hutool/fastjson2=20=E4=BB=A3=E7=A0=81?=
=?UTF-8?q?=E7=94=9F=E6=88=90=E5=99=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
cash-api/account-server/pom.xml | 2 +-
.../src/main/java/com/{ysk => czg}/AccountApplication.java | 2 +-
cash-api/order-server/pom.xml | 2 +-
.../src/main/java/com/{ysk => czg}/OrderApplication.java | 5 ++++-
cash-api/pom.xml | 2 +-
cash-api/product-server/pom.xml | 2 +-
.../src/main/java/com/{ysk => czg}/ProductApplication.java | 5 ++++-
cash-api/system-server/pom.xml | 2 +-
.../src/main/java/com/{ysk => czg}/SystemApplication.java | 5 ++++-
cash-common/pom.xml | 2 +-
cash-sdk/pom.xml | 2 +-
cash-service/account-service/pom.xml | 2 +-
cash-service/code-generator/pom.xml | 2 +-
.../code-generator/src/main/java/com/{ysk => czg}/Main.java | 2 +-
cash-service/order-service/pom.xml | 2 +-
cash-service/pom.xml | 6 +++---
cash-service/product-service/pom.xml | 2 +-
cash-service/system-service/pom.xml | 2 +-
pom.xml | 2 +-
19 files changed, 30 insertions(+), 21 deletions(-)
rename cash-api/account-server/src/main/java/com/{ysk => czg}/AccountApplication.java (94%)
rename cash-api/order-server/src/main/java/com/{ysk => czg}/OrderApplication.java (88%)
rename cash-api/product-server/src/main/java/com/{ysk => czg}/ProductApplication.java (88%)
rename cash-api/system-server/src/main/java/com/{ysk => czg}/SystemApplication.java (88%)
rename cash-service/code-generator/src/main/java/com/{ysk => czg}/Main.java (99%)
diff --git a/cash-api/account-server/pom.xml b/cash-api/account-server/pom.xml
index b83ecbb9..7695bdc0 100644
--- a/cash-api/account-server/pom.xml
+++ b/cash-api/account-server/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-api
1.0.0
diff --git a/cash-api/account-server/src/main/java/com/ysk/AccountApplication.java b/cash-api/account-server/src/main/java/com/czg/AccountApplication.java
similarity index 94%
rename from cash-api/account-server/src/main/java/com/ysk/AccountApplication.java
rename to cash-api/account-server/src/main/java/com/czg/AccountApplication.java
index e8014272..783ff759 100644
--- a/cash-api/account-server/src/main/java/com/ysk/AccountApplication.java
+++ b/cash-api/account-server/src/main/java/com/czg/AccountApplication.java
@@ -1,4 +1,4 @@
-package com.ysk;
+package com.czg;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
diff --git a/cash-api/order-server/pom.xml b/cash-api/order-server/pom.xml
index 4a642d70..63c28cf0 100644
--- a/cash-api/order-server/pom.xml
+++ b/cash-api/order-server/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-api
1.0.0
diff --git a/cash-api/order-server/src/main/java/com/ysk/OrderApplication.java b/cash-api/order-server/src/main/java/com/czg/OrderApplication.java
similarity index 88%
rename from cash-api/order-server/src/main/java/com/ysk/OrderApplication.java
rename to cash-api/order-server/src/main/java/com/czg/OrderApplication.java
index 75cde5dc..a1ee55ba 100644
--- a/cash-api/order-server/src/main/java/com/ysk/OrderApplication.java
+++ b/cash-api/order-server/src/main/java/com/czg/OrderApplication.java
@@ -1,8 +1,11 @@
-package com.ysk;
+package com.czg;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
+/**
+ * @author ww
+ */
@SpringBootApplication
public class OrderApplication {
diff --git a/cash-api/pom.xml b/cash-api/pom.xml
index b8cefc90..84f49016 100644
--- a/cash-api/pom.xml
+++ b/cash-api/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash
1.0.0
diff --git a/cash-api/product-server/pom.xml b/cash-api/product-server/pom.xml
index 83f1372c..480fd4b7 100644
--- a/cash-api/product-server/pom.xml
+++ b/cash-api/product-server/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-api
1.0.0
diff --git a/cash-api/product-server/src/main/java/com/ysk/ProductApplication.java b/cash-api/product-server/src/main/java/com/czg/ProductApplication.java
similarity index 88%
rename from cash-api/product-server/src/main/java/com/ysk/ProductApplication.java
rename to cash-api/product-server/src/main/java/com/czg/ProductApplication.java
index 9075f976..4f771539 100644
--- a/cash-api/product-server/src/main/java/com/ysk/ProductApplication.java
+++ b/cash-api/product-server/src/main/java/com/czg/ProductApplication.java
@@ -1,8 +1,11 @@
-package com.ysk;
+package com.czg;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
+/**
+ * @author ww
+ */
@SpringBootApplication
public class ProductApplication {
diff --git a/cash-api/system-server/pom.xml b/cash-api/system-server/pom.xml
index 24114594..fca4daea 100644
--- a/cash-api/system-server/pom.xml
+++ b/cash-api/system-server/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-api
1.0.0
diff --git a/cash-api/system-server/src/main/java/com/ysk/SystemApplication.java b/cash-api/system-server/src/main/java/com/czg/SystemApplication.java
similarity index 88%
rename from cash-api/system-server/src/main/java/com/ysk/SystemApplication.java
rename to cash-api/system-server/src/main/java/com/czg/SystemApplication.java
index 826fb9bd..0954627c 100644
--- a/cash-api/system-server/src/main/java/com/ysk/SystemApplication.java
+++ b/cash-api/system-server/src/main/java/com/czg/SystemApplication.java
@@ -1,8 +1,11 @@
-package com.ysk;
+package com.czg;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
+/**
+ * @author ww
+ */
@SpringBootApplication
public class SystemApplication {
diff --git a/cash-common/pom.xml b/cash-common/pom.xml
index a0c59538..48a2d8c2 100644
--- a/cash-common/pom.xml
+++ b/cash-common/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash
1.0.0
diff --git a/cash-sdk/pom.xml b/cash-sdk/pom.xml
index 104a763f..05a31f06 100644
--- a/cash-sdk/pom.xml
+++ b/cash-sdk/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash
1.0.0
diff --git a/cash-service/account-service/pom.xml b/cash-service/account-service/pom.xml
index c9680f17..7823032b 100644
--- a/cash-service/account-service/pom.xml
+++ b/cash-service/account-service/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-service
1.0.0
diff --git a/cash-service/code-generator/pom.xml b/cash-service/code-generator/pom.xml
index 34f01a44..43f09197 100644
--- a/cash-service/code-generator/pom.xml
+++ b/cash-service/code-generator/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-service
1.0.0
diff --git a/cash-service/code-generator/src/main/java/com/ysk/Main.java b/cash-service/code-generator/src/main/java/com/czg/Main.java
similarity index 99%
rename from cash-service/code-generator/src/main/java/com/ysk/Main.java
rename to cash-service/code-generator/src/main/java/com/czg/Main.java
index 60a39ef5..073ae911 100644
--- a/cash-service/code-generator/src/main/java/com/ysk/Main.java
+++ b/cash-service/code-generator/src/main/java/com/czg/Main.java
@@ -1,4 +1,4 @@
-package com.ysk;
+package com.czg;
import com.mybatisflex.codegen.Generator;
import com.mybatisflex.codegen.config.ColumnConfig;
diff --git a/cash-service/order-service/pom.xml b/cash-service/order-service/pom.xml
index 160b0c39..6aa1815c 100644
--- a/cash-service/order-service/pom.xml
+++ b/cash-service/order-service/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-service
1.0.0
diff --git a/cash-service/pom.xml b/cash-service/pom.xml
index b1062303..b7bb6092 100644
--- a/cash-service/pom.xml
+++ b/cash-service/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash
1.0.0
@@ -29,12 +29,12 @@
- com.ysk
+ com.czg
cash-common
1.0.0
- com.ysk
+ com.czg
cash-sdk
1.0.0
diff --git a/cash-service/product-service/pom.xml b/cash-service/product-service/pom.xml
index 14cddd42..1e11dfb6 100644
--- a/cash-service/product-service/pom.xml
+++ b/cash-service/product-service/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-service
1.0.0
diff --git a/cash-service/system-service/pom.xml b/cash-service/system-service/pom.xml
index 10dc6298..6710f2db 100644
--- a/cash-service/system-service/pom.xml
+++ b/cash-service/system-service/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.ysk
+ com.czg
cash-service
1.0.0
diff --git a/pom.xml b/pom.xml
index 9d083e30..a0c363a9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
3.4.2
- com.ysk
+ com.czg
cash
1.0.0
pom