This commit is contained in:
2025-04-16 14:37:24 +08:00
parent 8ac386242d
commit f6f847e41c
20 changed files with 713 additions and 54 deletions

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