This commit is contained in:
2025-05-30 10:31:21 +08:00
parent 115edc19fa
commit 80f4491836
73 changed files with 310 additions and 485 deletions

View File

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