mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
36 lines
638 B
Java
36 lines
638 B
Java
|
|
package com.jsowell.common.enums;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 收单机构enum
|
||
|
|
*/
|
||
|
|
public enum AcquirerEnum {
|
||
|
|
LOCAL("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;
|
||
|
|
}
|
||
|
|
|
||
|
|
AcquirerEnum(String value, String label) {
|
||
|
|
this.value = value;
|
||
|
|
this.label = label;
|
||
|
|
}
|
||
|
|
}
|