修改了 payapi 充值接口的bug
diff --git a/multi-tenant/build.gradle b/multi-tenant/build.gradle
new file mode 100644
index 0000000..031c0a3
--- /dev/null
+++ b/multi-tenant/build.gradle
@@ -0,0 +1,28 @@
+plugins {
+    id "java-library"
+    id "org.springframework.boot"
+}
+
+jar {
+    enabled = true
+    archiveFileName = "${project.name}-${buildVersion}.${archiveExtension.getOrElse('.jar')}"
+    manifest {
+        attributes('Implementation-Title': project.name,
+                'Implementation-Version': buildVersion)
+    }
+}
+println("Build Version: $buildVersion")
+bootJar {
+    enabled = false
+}
+
+dependencies {
+    implementation "org.springframework.boot:spring-boot-autoconfigure"
+    implementation "commons-beanutils:commons-beanutils:${beanutilsVersion}"
+    implementation "commons-codec:commons-codec:${codecVersion}"
+    implementation "org.apache.commons:commons-lang3:${lang3Version}"
+
+    compileOnly "org.projectlombok:lombok:${lombokVersion}"
+    annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
+}
+