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:14
| */
| public enum ConnectorTypeEnum {
| HOUSEHOLD_SOCKET(1, "家用插座"),
| AC_SOCKET(2, "交流接口插座"),
| AC_INTERFACE_PLUG(3, "交流接口插头"),
| DC_INTERFACE_GUN_HEAD(4, "直流接口枪头"),
| WIRELESS_CHARGING_STAND(5, "无线充电座"),
| OTHER(6, "其他")
| ;
| private Integer type;
| private String note;
|
| ConnectorTypeEnum(Integer type, String note) {
| this.type = type;
| this.note = note;
| }
|
| public Integer getType() {
| return type;
| }
|
| public void setType(Integer type) {
| this.type = type;
| }
|
| public String getNote() {
| return note;
| }
|
| public void setNote(String note) {
| this.note = note;
| }
| }
|
|