1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| package com.ruoyi.integration.drainage.model.enu;
|
| /**
| * 接口地址枚举
| * @author zhibing.pu
| * @Date 2025/1/21 14:38
| */
| public enum InterfaceUrlEnum {
| QUERY_STATIONS_INFO("query_stations_info", "查询充电站信息"),
| NOTIFICATION_STATION_STATUS("notification_stationStatus", "设备状态变化推送"),
| QUERY_STATION_STATUS("query_station_status", "设备接口状态查询"),
|
| ;
|
| 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;
| }
| }
|
|