From 2b5847f009e1c750ffd574559a60b17d8e074650 Mon Sep 17 00:00:00 2001
From: sawyergore <3077528351@qq.com>
Date: Mon, 12 Sep 2022 17:02:54 +0800
Subject: [PATCH] =?UTF-8?q?#001=5F=E9=A1=B9=E7=9B=AE=E5=88=9D=E5=A7=8B?=
=?UTF-8?q?=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
mall-coupon/pom.xml | 57 +++++++++++++++++++
.../mallcoupon/MallCouponApplication.java | 13 +++++
.../src/main/resources/application.properties | 1 +
.../MallCouponApplicationTests.java | 13 +++++
mall-member/pom.xml | 57 +++++++++++++++++++
.../mallmember/MallMemberApplication.java | 13 +++++
.../src/main/resources/application.properties | 1 +
.../MallMemberApplicationTests.java | 13 +++++
mall-order/pom.xml | 57 +++++++++++++++++++
.../mallorder/MallOrderApplication.java | 13 +++++
.../src/main/resources/application.properties | 1 +
.../mallorder/MallOrderApplicationTests.java | 13 +++++
mall-product/pom.xml | 57 +++++++++++++++++++
.../mallproduct/MallProductApplication.java | 13 +++++
.../src/main/resources/application.properties | 1 +
.../MallProductApplicationTests.java | 13 +++++
mall-ware/pom.xml | 57 +++++++++++++++++++
.../sawyer/mallware/MallWareApplication.java | 13 +++++
.../src/main/resources/application.properties | 1 +
.../mallware/MallWareApplicationTests.java | 13 +++++
pom.xml | 18 ++++++
21 files changed, 438 insertions(+)
create mode 100644 mall-coupon/pom.xml
create mode 100644 mall-coupon/src/main/java/com/sawyer/mallcoupon/MallCouponApplication.java
create mode 100644 mall-coupon/src/main/resources/application.properties
create mode 100644 mall-coupon/src/test/java/com/sawyer/mallcoupon/MallCouponApplicationTests.java
create mode 100644 mall-member/pom.xml
create mode 100644 mall-member/src/main/java/com/sawyer/mallmember/MallMemberApplication.java
create mode 100644 mall-member/src/main/resources/application.properties
create mode 100644 mall-member/src/test/java/com/sawyer/mallmember/MallMemberApplicationTests.java
create mode 100644 mall-order/pom.xml
create mode 100644 mall-order/src/main/java/com/sewyer/mallorder/MallOrderApplication.java
create mode 100644 mall-order/src/main/resources/application.properties
create mode 100644 mall-order/src/test/java/com/sewyer/mallorder/MallOrderApplicationTests.java
create mode 100644 mall-product/pom.xml
create mode 100644 mall-product/src/main/java/com/sweyer/mallproduct/MallProductApplication.java
create mode 100644 mall-product/src/main/resources/application.properties
create mode 100644 mall-product/src/test/java/com/sweyer/mallproduct/MallProductApplicationTests.java
create mode 100644 mall-ware/pom.xml
create mode 100644 mall-ware/src/main/java/com/sawyer/mallware/MallWareApplication.java
create mode 100644 mall-ware/src/main/resources/application.properties
create mode 100644 mall-ware/src/test/java/com/sawyer/mallware/MallWareApplicationTests.java
create mode 100644 pom.xml
diff --git a/mall-coupon/pom.xml b/mall-coupon/pom.xml
new file mode 100644
index 0000000..44e15de
--- /dev/null
+++ b/mall-coupon/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sawyer
+ mall-coupon
+ 0.0.1-SNAPSHOT
+ mall-coupon
+ mall-coupon
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-coupon/src/main/java/com/sawyer/mallcoupon/MallCouponApplication.java b/mall-coupon/src/main/java/com/sawyer/mallcoupon/MallCouponApplication.java
new file mode 100644
index 0000000..0c80ebe
--- /dev/null
+++ b/mall-coupon/src/main/java/com/sawyer/mallcoupon/MallCouponApplication.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallcoupon;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallCouponApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallCouponApplication.class, args);
+ }
+
+}
diff --git a/mall-coupon/src/main/resources/application.properties b/mall-coupon/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-coupon/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-coupon/src/test/java/com/sawyer/mallcoupon/MallCouponApplicationTests.java b/mall-coupon/src/test/java/com/sawyer/mallcoupon/MallCouponApplicationTests.java
new file mode 100644
index 0000000..ab7f60c
--- /dev/null
+++ b/mall-coupon/src/test/java/com/sawyer/mallcoupon/MallCouponApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallcoupon;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallCouponApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-member/pom.xml b/mall-member/pom.xml
new file mode 100644
index 0000000..afaa705
--- /dev/null
+++ b/mall-member/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sawyer
+ mall-member
+ 0.0.1-SNAPSHOT
+ mall-member
+ mall-member
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-member/src/main/java/com/sawyer/mallmember/MallMemberApplication.java b/mall-member/src/main/java/com/sawyer/mallmember/MallMemberApplication.java
new file mode 100644
index 0000000..2d1d887
--- /dev/null
+++ b/mall-member/src/main/java/com/sawyer/mallmember/MallMemberApplication.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallmember;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallMemberApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallMemberApplication.class, args);
+ }
+
+}
diff --git a/mall-member/src/main/resources/application.properties b/mall-member/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-member/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-member/src/test/java/com/sawyer/mallmember/MallMemberApplicationTests.java b/mall-member/src/test/java/com/sawyer/mallmember/MallMemberApplicationTests.java
new file mode 100644
index 0000000..c273a79
--- /dev/null
+++ b/mall-member/src/test/java/com/sawyer/mallmember/MallMemberApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallmember;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallMemberApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-order/pom.xml b/mall-order/pom.xml
new file mode 100644
index 0000000..6197482
--- /dev/null
+++ b/mall-order/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sewyer
+ mall-order
+ 0.0.1-SNAPSHOT
+ mall-order
+ mall-order
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-order/src/main/java/com/sewyer/mallorder/MallOrderApplication.java b/mall-order/src/main/java/com/sewyer/mallorder/MallOrderApplication.java
new file mode 100644
index 0000000..6b298b9
--- /dev/null
+++ b/mall-order/src/main/java/com/sewyer/mallorder/MallOrderApplication.java
@@ -0,0 +1,13 @@
+package com.sewyer.mallorder;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallOrderApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallOrderApplication.class, args);
+ }
+
+}
diff --git a/mall-order/src/main/resources/application.properties b/mall-order/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-order/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-order/src/test/java/com/sewyer/mallorder/MallOrderApplicationTests.java b/mall-order/src/test/java/com/sewyer/mallorder/MallOrderApplicationTests.java
new file mode 100644
index 0000000..035d249
--- /dev/null
+++ b/mall-order/src/test/java/com/sewyer/mallorder/MallOrderApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sewyer.mallorder;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallOrderApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-product/pom.xml b/mall-product/pom.xml
new file mode 100644
index 0000000..b2c4fdc
--- /dev/null
+++ b/mall-product/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sweyer
+ mall-product
+ 0.0.1-SNAPSHOT
+ mall-product
+ mall-product
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-product/src/main/java/com/sweyer/mallproduct/MallProductApplication.java b/mall-product/src/main/java/com/sweyer/mallproduct/MallProductApplication.java
new file mode 100644
index 0000000..73b2165
--- /dev/null
+++ b/mall-product/src/main/java/com/sweyer/mallproduct/MallProductApplication.java
@@ -0,0 +1,13 @@
+package com.sweyer.mallproduct;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallProductApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallProductApplication.class, args);
+ }
+
+}
diff --git a/mall-product/src/main/resources/application.properties b/mall-product/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-product/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-product/src/test/java/com/sweyer/mallproduct/MallProductApplicationTests.java b/mall-product/src/test/java/com/sweyer/mallproduct/MallProductApplicationTests.java
new file mode 100644
index 0000000..6d34592
--- /dev/null
+++ b/mall-product/src/test/java/com/sweyer/mallproduct/MallProductApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sweyer.mallproduct;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallProductApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-ware/pom.xml b/mall-ware/pom.xml
new file mode 100644
index 0000000..a747839
--- /dev/null
+++ b/mall-ware/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sawyer
+ mall-ware
+ 0.0.1-SNAPSHOT
+ mall-ware
+ mall-ware
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-ware/src/main/java/com/sawyer/mallware/MallWareApplication.java b/mall-ware/src/main/java/com/sawyer/mallware/MallWareApplication.java
new file mode 100644
index 0000000..24b96ad
--- /dev/null
+++ b/mall-ware/src/main/java/com/sawyer/mallware/MallWareApplication.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallware;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallWareApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallWareApplication.class, args);
+ }
+
+}
diff --git a/mall-ware/src/main/resources/application.properties b/mall-ware/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-ware/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-ware/src/test/java/com/sawyer/mallware/MallWareApplicationTests.java b/mall-ware/src/test/java/com/sawyer/mallware/MallWareApplicationTests.java
new file mode 100644
index 0000000..45abf71
--- /dev/null
+++ b/mall-ware/src/test/java/com/sawyer/mallware/MallWareApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallware;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallWareApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..3bd2d57
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,18 @@
+
+
+ 4.0.0
+ com.sawyer
+ guli_mall
+ 0.0.1-SNAPSHOT
+ guli_mall
+ guli_mall
+ pom
+
+ mall-product
+ mall-coupon
+ mall-member
+ mall-order
+ mall-ware
+
+