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
| package com.ld.igds.protocol.modbus.data;
|
| import lombok.Data;
|
| /**
| * @Desc: 用于封装ModBUsTCP的信息
| * @author: andy.jia
| * @update-time: 2023/8/12 15:29
| */
| @Data
| public class ModbusTcp {
|
| private String deviceId;
|
| private String serId;
|
| private String ip;
|
| private int port;
|
| private int addrOpen;
|
| private int addrClose;
|
| private int addrStop;
|
| private int addrOpenEnd;
|
| private int addrCloseEnd;
|
| private int addrOpenError;
|
| private int addrCloseError;
|
| }
|
|