mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
update 对接联联平台
This commit is contained in:
35
jsowell-common/src/main/java/com/jsowell/common/enums/thirdparty/ThirdPartyApiEnum.java
vendored
Normal file
35
jsowell-common/src/main/java/com/jsowell/common/enums/thirdparty/ThirdPartyApiEnum.java
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
package com.jsowell.common.enums.thirdparty;
|
||||
|
||||
public enum ThirdPartyApiEnum {
|
||||
NOTIFICATION_STATION_STATUS("notification_stationStatus", "设备状态变化推送"),
|
||||
NOTIFICATION_CHARGE_ORDER_INFO("notification_charge_order_info", "推送充电订单信息"),
|
||||
NOTIFICATION_START_CHARGE_RESULT("notification_start_charge_result", "推送启动充电结果"),
|
||||
NOTIFICATION_EQUIP_CHARGE_STATUS("notification_equip_charge_status", "推送充电状态"),
|
||||
NOTIFICATION_STOP_CHARGE_RESULT("notification_stop_charge_result", "推送停止充电结果"),
|
||||
CHECK_CHARGE_ORDERS("check_charge_orders", "推送订单对账结果信息"),
|
||||
;
|
||||
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;
|
||||
}
|
||||
|
||||
ThirdPartyApiEnum(String value, String label) {
|
||||
this.value = value;
|
||||
this.label = label;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user