mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
记录支付机构
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user