13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package com.ruoyi.fuzhou.domain.vo;
 
 
import com.alibaba.fastjson2.JSONObject;
import com.baomidou.mybatisplus.annotation.TableField;
 
public class DpEquipmentVO {
    private Integer id;
    private Integer beId;
    private String equName;
    private Integer intervalTime;
    private Integer periodTime;
    private Integer equSeType;
    private String protocol;
    private Integer whId;
    private Double x;
    private Double y;
    private Double z;
    private String fieldName;
    private Integer equipmentTypeId;
    private String equtype;
    private String description;
    private String filepath;
    private String whName;
    private String beName;
    private String typeName;
    private String icon;
    private String equCode;
    private Integer status;
 
    @TableField(exist = false)
    private String ip;
 
    @TableField(exist = false)
    private Integer port;
 
    @TableField(exist = false)
    private Byte deviceAddress;
 
    @TableField(exist = false)
    private Object dataHis;
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Object getDataHis() {
        return dataHis;
    }
 
    public void setDataHis(Object dataHis) {
        this.dataHis = dataHis;
    }
 
    public String getEquCode() {
        return equCode;
    }
 
    public void setEquCode(String equCode) {
        this.equCode = equCode;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
 
    public String getWhName() {
        return whName;
    }
 
    public void setWhName(String whName) {
        this.whName = whName;
    }
 
    public String getBeName() {
        return beName;
    }
 
    public void setBeName(String beName) {
        this.beName = beName;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getBeId() {
        return beId;
    }
 
    public void setBeId(Integer beId) {
        this.beId = beId;
    }
 
    public String getEquName() {
        return equName;
    }
 
    public void setEquName(String equName) {
        this.equName = equName;
    }
 
    public Integer getIntervalTime() {
        return intervalTime;
    }
 
    public void setIntervalTime(Integer intervalTime) {
        this.intervalTime = intervalTime;
    }
 
    public Integer getPeriodTime() {
        return periodTime;
    }
 
    public void setPeriodTime(Integer periodTime) {
        this.periodTime = periodTime;
    }
 
    public Integer getEquSeType() {
        return equSeType;
    }
 
    public void setEquSeType(Integer equSeType) {
        this.equSeType = equSeType;
    }
 
    public String getProtocol() {
        return protocol;
    }
 
    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }
 
    public Integer getWhId() {
        return whId;
    }
 
    public void setWhId(Integer whId) {
        this.whId = whId;
    }
 
    public Double getX() {
        return x;
    }
 
    public void setX(Double x) {
        this.x = x;
    }
 
    public Double getY() {
        return y;
    }
 
    public void setY(Double y) {
        this.y = y;
    }
 
    public Double getZ() {
        return z;
    }
 
    public void setZ(Double z) {
        this.z = z;
    }
 
    public String getFieldName() {
        return fieldName;
    }
 
    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    }
 
    public Integer getEquipmentTypeId() {
        return equipmentTypeId;
    }
 
    public void setEquipmentTypeId(Integer equipmentTypeId) {
        this.equipmentTypeId = equipmentTypeId;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getEqutype() {
        return equtype;
    }
 
    public void setEqutype(String equtype) {
        this.equtype = equtype;
    }
 
    public String getFilepath() {
        return filepath;
    }
 
    public void setFilepath(String filepath) {
        this.filepath = filepath;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public Integer getPort() {
        return port;
    }
 
    public void setPort(Integer port) {
        this.port = port;
    }
 
    public Byte getDeviceAddress() {
        return deviceAddress;
    }
 
    public void setDeviceAddress(Byte deviceAddress) {
        this.deviceAddress = deviceAddress;
    }
}