commit 7a6356ea87bd42b6e64b5857312bd0c069bf03b1 Author: yangpeng <3074487626@qq.com> Date: Mon Aug 5 10:30:04 2024 +0800 支付方式 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d769462 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..90d2705 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..82dbec8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/cloud-pay-client/pom.xml b/cloud-pay-client/pom.xml new file mode 100644 index 0000000..c524404 --- /dev/null +++ b/cloud-pay-client/pom.xml @@ -0,0 +1,21 @@ + + + 4.0.0 + + com.bwwei + cloud-pay + 1.0.0 + + + com.muyu + cloud-pay-client + + + 17 + 17 + UTF-8 + + + \ No newline at end of file diff --git a/cloud-pay-client/src/main/java/com/muyu/Main.java b/cloud-pay-client/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..1d4ae3f --- /dev/null +++ b/cloud-pay-client/src/main/java/com/muyu/Main.java @@ -0,0 +1,13 @@ +package com.muyu; + +/** + * @Classname ${NAME} + * @Description TODO + * @Date 2024/8/4 上午11:21 + * @Created by 杨旭飞 + */ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/cloud-pay-common/pom.xml b/cloud-pay-common/pom.xml new file mode 100644 index 0000000..6891487 --- /dev/null +++ b/cloud-pay-common/pom.xml @@ -0,0 +1,21 @@ + + + 4.0.0 + + com.bwwei + cloud-pay + 1.0.0 + + + com.muyu + cloud-pay-common + + + 17 + 17 + UTF-8 + + + \ No newline at end of file diff --git a/cloud-pay-common/src/main/java/com/muyu/Main.java b/cloud-pay-common/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..1d4ae3f --- /dev/null +++ b/cloud-pay-common/src/main/java/com/muyu/Main.java @@ -0,0 +1,13 @@ +package com.muyu; + +/** + * @Classname ${NAME} + * @Description TODO + * @Date 2024/8/4 上午11:21 + * @Created by 杨旭飞 + */ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/cloud-pay-remote/pom.xml b/cloud-pay-remote/pom.xml new file mode 100644 index 0000000..c90f463 --- /dev/null +++ b/cloud-pay-remote/pom.xml @@ -0,0 +1,21 @@ + + + 4.0.0 + + com.bwwei + cloud-pay + 1.0.0 + + + com.muyu + cloud-pay-remote + + + 17 + 17 + UTF-8 + + + \ No newline at end of file diff --git a/cloud-pay-remote/src/main/java/com/muyu/Main.java b/cloud-pay-remote/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..44da29b --- /dev/null +++ b/cloud-pay-remote/src/main/java/com/muyu/Main.java @@ -0,0 +1,13 @@ +package com.muyu; + +/** + * @Classname ${NAME} + * @Description TODO + * @Date 2024/8/4 上午11:22 + * @Created by 杨旭飞 + */ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/cloud-pay-server/pom.xml b/cloud-pay-server/pom.xml new file mode 100644 index 0000000..fe1926c --- /dev/null +++ b/cloud-pay-server/pom.xml @@ -0,0 +1,33 @@ + + + 4.0.0 + + com.bwwei + cloud-pay + 1.0.0 + + + com.muyu + cloud-pay-server + + + 17 + 17 + UTF-8 + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + + \ No newline at end of file diff --git a/cloud-pay-server/src/main/java/com/muyu/Main.java b/cloud-pay-server/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..44da29b --- /dev/null +++ b/cloud-pay-server/src/main/java/com/muyu/Main.java @@ -0,0 +1,13 @@ +package com.muyu; + +/** + * @Classname ${NAME} + * @Description TODO + * @Date 2024/8/4 上午11:22 + * @Created by 杨旭飞 + */ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..795c59f --- /dev/null +++ b/pom.xml @@ -0,0 +1,35 @@ + + + 4.0.0 + + + com.muyu + cloud-server-parent + 3.6.3 + + + com.bwwei + cloud-pay + 1.0.0 + pom + + + cloud-pay-server + cloud-pay-client + cloud-pay-remote + cloud-pay-common + cloud-pay-client + cloud-pay-common + cloud-pay-remote + cloud-pay-server + + + + 17 + 17 + UTF-8 + + + \ No newline at end of file