记录支付机构

This commit is contained in:
2023-05-22 13:57:12 +08:00
parent ae07c614d0
commit de76a5d456
3 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
package com.jsowell.common.enums.ykc;
public enum PaymentInstitutionsEnum {
LOCAL_ACCOUNTS("0", "本地账户支付"),
WECHAT_PAY("1", "微信支付"),
ADAPAY("2", "汇付支付"),
;
private String value;
private String label;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
PaymentInstitutionsEnum(String value, String label) {
this.value = value;
this.label = label;
}
}