package com.ruoyi.integration.drainage.model.enu;
|
|
/**
|
* 接口地址枚举
|
* @author zhibing.pu
|
* @Date 2025/1/21 14:38
|
*/
|
public enum InterfaceUrlEnum {
|
QUERY_TOKEN("/query_token", "获取权限token"),
|
NOTIFICATION_STATION_STATUS("/notification_stationStatus", "设备状态变化推送"),
|
NOTIFICATION_STATION_CHANGE("/notification_station_change", "站点计费策略变更推送"),
|
NOTIFICATION_START_CHARGE_RESULT("/notification_start_charge_result", "推送启动充电结果"),
|
NOTIFICATION_EQUIP_CHARGE_STATUS("/notification_equip_charge_status", "推送充电状态"),
|
NOTIFICATION_STOP_CHARGE_RESULT("/notification_stop_charge_result", "推送停止充电结果"),
|
NOTIFICATION_CHARGE_ORDER_INFO("/notification_charge_order_info", "推送充电订单信息"),
|
CHECK_CHARGE_ORDERS("/check_charge_orders", "推送订单对账结果信息"),
|
;
|
|
private String url;
|
private String note;
|
|
InterfaceUrlEnum(String url, String note) {
|
this.url = url;
|
this.note = note;
|
}
|
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|