You've already forked FrameTour-BE
Java21
This commit is contained in:
@@ -1,20 +1,16 @@
|
||||
package com.ycwl.basic.pay.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public enum PayAdapterType {
|
||||
WX_MP_PAY("WX_MP_PAY"),
|
||||
;
|
||||
|
||||
private String type;
|
||||
private final 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