1
2
3
4
5
6
7
8
9
10
11
12
| package com.hdl.sdk.ttl.HDLDeviceManger.Bean;
|
| public class UdpDataBean {
| public int sourceSubnetID;//发送者子网号
| public int sourceDeviceID;
| public int desSubnetID;//目标接收者子网号
| public int desDeviceID;
| public int command;
| public byte[] addBytes;
| // public int port;
| // public String ipAddress;
| }
|
|