zsh_root
2025-12-10 8d662de2fd262b3a485f16e197cb4d0ca2a61cdf
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
package jiexi;
 
import java.util.Objects;
 
/**
 * 设备配置数据对象
 */
public class DeviceConfig {
    // 基础配置
    private String sequenceNum;
    private String crc;
    private String version;
    private String flags;
 
    private int ipType; // IP类型: 0"静态IP"  1 "DHCP"
    private int connectionType; // 连接类型: 0"短连接" 1"长连接"
    private boolean cacheClear; // 缓存清理: "清理缓存" 或 "不清理缓存"
    private int httpServerPort;//HTTP服务端口
    private String staticIp;//静态IP地址
    private String gatewayIp;//网关
    private String subnetMask;//子网掩码
    private String moduleName;//模块名称
    private String username;//用户名
    private String password;//密码
    private int deviceId;//设备ID
 
    // 设备功能标志
    private boolean rfc2217;
    private boolean index;
    private boolean link;
    private boolean reset;
    private boolean sendDataWithId;
    private boolean sendIdOnConnect;
 
    // 网络配置
    private String macAddress;//MAC地址
    private String dnsServer;//DNS服务器地址
    private int shortConnectionTime;//短连接断开时间
    private int timeoutRestart;
 
    // 串口配置
    private int baudRate;//串口波特率
    private int dataBits;//串口数据位
    private String dataBitsDesc;//串口数据位类型
    private int parity;//串口校验位
    private String parityDesc;//串口检验位类型
    private int stopBits;//串口停止位
    private String stopBitsDesc;//串口停止位类型
 
    // 通信配置
    private int localPort;//本地端口
    private int remotePort;//远程端口
 
    private String targetUrl;//IP地址或域名
    private String targetIp;//目标IP设置
    private int workMode;//工作方式
    private String workModeDesc;//工作方式描述
    private String httpMode;//HTTP模式
    private int tcpClientCount;//TCP Server可连接的Client数量
    private boolean communicationCloud;//通信云
    private boolean tcpServerFallback;//TCP Server跳回连接
    private boolean macRegistration;//MAC注册包
 
    // 构造器
    public DeviceConfig() {
    }
 
 
    public String getSequenceNum() {
        return sequenceNum;
    }
 
    public void setSequenceNum(String sequenceNum) {
        this.sequenceNum = sequenceNum;
    }
 
    public String getCrc() {
        return crc;
    }
 
    public void setCrc(String crc) {
        this.crc = crc;
    }
 
    public String getVersion() {
        return version;
    }
 
    public void setVersion(String version) {
        this.version = version;
    }
 
    public String getFlags() {
        return flags;
    }
 
    public void setFlags(String flags) {
        this.flags = flags;
    }
 
    public int getHttpServerPort() {
        return httpServerPort;
    }
 
    public void setHttpServerPort(int httpServerPort) {
        this.httpServerPort = httpServerPort;
    }
 
    public String getStaticIp() {
        return staticIp;
    }
 
    public void setStaticIp(String staticIp) {
        this.staticIp = staticIp;
    }
 
    public String getGatewayIp() {
        return gatewayIp;
    }
 
    public void setGatewayIp(String gatewayIp) {
        this.gatewayIp = gatewayIp;
    }
 
    public String getSubnetMask() {
        return subnetMask;
    }
 
    public void setSubnetMask(String subnetMask) {
        this.subnetMask = subnetMask;
    }
 
    public String getModuleName() {
        return moduleName;
    }
 
    public void setModuleName(String moduleName) {
        this.moduleName = moduleName;
    }
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public int getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(int deviceId) {
        this.deviceId = deviceId;
    }
 
    public boolean isRfc2217() {
        return rfc2217;
    }
 
    public void setRfc2217(boolean rfc2217) {
        this.rfc2217 = rfc2217;
    }
 
    public boolean isIndex() {
        return index;
    }
 
    public void setIndex(boolean index) {
        this.index = index;
    }
 
    public boolean isLink() {
        return link;
    }
 
    public void setLink(boolean link) {
        this.link = link;
    }
 
    public boolean isReset() {
        return reset;
    }
 
    public void setReset(boolean reset) {
        this.reset = reset;
    }
 
    public boolean isSendDataWithId() {
        return sendDataWithId;
    }
 
    public void setSendDataWithId(boolean sendDataWithId) {
        this.sendDataWithId = sendDataWithId;
    }
 
    public boolean isSendIdOnConnect() {
        return sendIdOnConnect;
    }
 
    public void setSendIdOnConnect(boolean sendIdOnConnect) {
        this.sendIdOnConnect = sendIdOnConnect;
    }
 
    public String getMacAddress() {
        return macAddress;
    }
 
    public void setMacAddress(String macAddress) {
        this.macAddress = macAddress;
    }
 
    public String getDnsServer() {
        return dnsServer;
    }
 
    public void setDnsServer(String dnsServer) {
        this.dnsServer = dnsServer;
    }
 
    public int getShortConnectionTime() {
        return shortConnectionTime;
    }
 
    public void setShortConnectionTime(int shortConnectionTime) {
        this.shortConnectionTime = shortConnectionTime;
    }
 
    public int getTimeoutRestart() {
        return timeoutRestart;
    }
 
    public void setTimeoutRestart(int timeoutRestart) {
        this.timeoutRestart = timeoutRestart;
    }
 
    public int getBaudRate() {
        return baudRate;
    }
 
    public void setBaudRate(int baudRate) {
        this.baudRate = baudRate;
    }
 
    public int getDataBits() {
        return dataBits;
    }
 
    public void setDataBits(int dataBits) {
        this.dataBits = dataBits;
    }
 
    public String getDataBitsDesc() {
        return dataBitsDesc;
    }
 
    public void setDataBitsDesc(String dataBitsDesc) {
        this.dataBitsDesc = dataBitsDesc;
    }
 
    public int getParity() {
        return parity;
    }
 
    public void setParity(int parity) {
        this.parity = parity;
    }
 
    public String getParityDesc() {
        return parityDesc;
    }
 
    public void setParityDesc(String parityDesc) {
        this.parityDesc = parityDesc;
    }
 
    public int getStopBits() {
        return stopBits;
    }
 
    public void setStopBits(int stopBits) {
        this.stopBits = stopBits;
    }
 
    public String getStopBitsDesc() {
        return stopBitsDesc;
    }
 
    public void setStopBitsDesc(String stopBitsDesc) {
        this.stopBitsDesc = stopBitsDesc;
    }
 
    public int getLocalPort() {
        return localPort;
    }
 
    public void setLocalPort(int localPort) {
        this.localPort = localPort;
    }
 
    public int getRemotePort() {
        return remotePort;
    }
 
    public void setRemotePort(int remotePort) {
        this.remotePort = remotePort;
    }
 
    public int getIpType() {
        return ipType;
    }
 
    public void setIpType(int ipType) {
        this.ipType = ipType;
    }
 
    public int getConnectionType() {
        return connectionType;
    }
 
    public void setConnectionType(int connectionType) {
        this.connectionType = connectionType;
    }
 
    public boolean isCacheClear() {
        return cacheClear;
    }
 
    public void setCacheClear(boolean cacheClear) {
        this.cacheClear = cacheClear;
    }
 
    public String getTargetUrl() {
        return targetUrl;
    }
 
    public void setTargetUrl(String targetUrl) {
        this.targetUrl = targetUrl;
    }
 
    public String getTargetIp() {
        return targetIp;
    }
 
    public void setTargetIp(String targetIp) {
        this.targetIp = targetIp;
    }
 
    public int getWorkMode() {
        return workMode;
    }
 
    public void setWorkMode(int workMode) {
        this.workMode = workMode;
    }
 
    public String getWorkModeDesc() {
        return workModeDesc;
    }
 
    public void setWorkModeDesc(String workModeDesc) {
        this.workModeDesc = workModeDesc;
    }
 
    public String getHttpMode() {
        return httpMode;
    }
 
    public void setHttpMode(String httpMode) {
        this.httpMode = httpMode;
    }
 
    public int getTcpClientCount() {
        return tcpClientCount;
    }
 
    public void setTcpClientCount(int tcpClientCount) {
        this.tcpClientCount = tcpClientCount;
    }
 
    public boolean isCommunicationCloud() {
        return communicationCloud;
    }
 
    public void setCommunicationCloud(boolean communicationCloud) {
        this.communicationCloud = communicationCloud;
    }
 
    public boolean isTcpServerFallback() {
        return tcpServerFallback;
    }
 
    public void setTcpServerFallback(boolean tcpServerFallback) {
        this.tcpServerFallback = tcpServerFallback;
    }
 
    public boolean isMacRegistration() {
        return macRegistration;
    }
 
    public void setMacRegistration(boolean macRegistration) {
        this.macRegistration = macRegistration;
    }
 
 
 
 
 
    @Override
    public String toString() {
        return "DeviceConfig{" +
                "sequenceNum='" + sequenceNum + '\'' +
                ", staticIp='" + staticIp + '\'' +
                ", gatewayIp='" + gatewayIp + '\'' +
                ", subnetMask='" + subnetMask + '\'' +
                ", moduleName='" + moduleName + '\'' +
                ", macAddress='" + macAddress + '\'' +
                ", workModeDesc='" + workModeDesc + '\'' +
                ", baudRate=" + baudRate +
                '}';
    }
}