You've already forked FrameTour-BE
支付
This commit is contained in:
20
src/main/java/com/ycwl/basic/pay/enums/PayAdapterType.java
Normal file
20
src/main/java/com/ycwl/basic/pay/enums/PayAdapterType.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package com.ycwl.basic.pay.enums;
|
||||
|
||||
public enum PayAdapterType {
|
||||
WX_MP_PAY("WX_MP_PAY"),
|
||||
;
|
||||
|
||||
private String type;
|
||||
|
||||
PayAdapterType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user