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
40
41
42
| package com.ruoyi.integration.drainage.model.enu;
|
| /**
| * 设备类型
| * @author zhibing.pu
| * @Date 2025/1/21 13:59
| */
| public enum EquipmentTypeEnum {
| DIRECT_CURRENT(1, "直流设备"),
| ALTERNATING_CURRENT(2, "交流设备"),
| ALTERNATING_DIRECT(3, "交直流一体设备"),
| WIRELESS_DEVICE(4, "无线设备"),
| OTHER(5, "其他"),
| ORDER(6, "有序"),
| V2G(7, "V2G")
| ;
|
|
| private Integer type;
| private String note;
|
| EquipmentTypeEnum(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;
| }
| }
|
|