mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
34 lines
535 B
Java
34 lines
535 B
Java
package com.jsowell.common.enums;
|
|
|
|
/**
|
|
* 软件协议enum
|
|
*/
|
|
public enum SoftwareProtocolEnum {
|
|
YUN_KUAI_CHONG("1", "云快充"),
|
|
YONG_LIAN("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;
|
|
}
|
|
|
|
SoftwareProtocolEnum(String value, String label) {
|
|
this.value = value;
|
|
this.label = label;
|
|
}
|
|
} |