@@ -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>
@@ -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;
+ }
+}