TRX 1 год назад
Родитель
Сommit
b7cb85074e

+ 12 - 0
pom.xml

@@ -32,5 +32,17 @@
         </dependency>
 
     </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>9</source>
+                    <target>9</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 
 </project>

+ 22 - 0
src/main/java/com/github/microservice/types/unionFrictionlessPayType/WithDrawState.java

@@ -0,0 +1,22 @@
+package com.github.microservice.types.unionFrictionlessPayType;
+
+import lombok.Getter;
+
+/**
+ * 收钱吧 提现状态
+ */
+public enum WithDrawState {
+
+    WithDrawing("提现中"),
+    Success("成功"),
+    Fail("失败"),
+    ;
+
+    // 名称
+    @Getter
+    private String name;
+
+    WithDrawState(String name) {
+        this.name = name;
+    }
+}