提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 251823 |
|
7 |
* @description 智慧空开状态信息 |
|
8 |
* @date 2023/05/11 16:03:12 |
|
9 |
*/ |
|
10 |
public class NET_CASERUNNING_AIRSWITCH_INFO extends NetSDKLib.SdkStructure { |
|
11 |
/** |
|
12 |
* 电压,单位:v |
|
13 |
*/ |
|
14 |
public byte[] szVol = new byte[32]; |
|
15 |
/** |
|
16 |
* 电流,单位:a |
|
17 |
*/ |
|
18 |
public byte[] szECurrent = new byte[32]; |
|
19 |
/** |
|
20 |
* 功率,单位:w |
|
21 |
*/ |
|
22 |
public byte[] szPower = new byte[32]; |
|
23 |
/** |
|
24 |
* 在位检测状态,01 在位状态 ,00 不在位状态 |
|
25 |
*/ |
|
26 |
public byte[] szOnPosition = new byte[32]; |
|
27 |
/** |
|
28 |
* 开关状态,01 打开状态,00 关闭状态 |
|
29 |
*/ |
|
30 |
public byte[] szState = new byte[32]; |
|
31 |
/** |
|
32 |
* 版本 |
|
33 |
*/ |
|
34 |
public byte[] szVersion = new byte[32]; |
|
35 |
/** |
|
36 |
* mac地址 |
|
37 |
*/ |
|
38 |
public byte[] szMac = new byte[32]; |
|
39 |
/** |
|
40 |
* 序列号 |
|
41 |
*/ |
|
42 |
public byte[] szSn = new byte[32]; |
|
43 |
/** |
|
44 |
* 编号 |
|
45 |
*/ |
|
46 |
public byte[] szId = new byte[32]; |
|
47 |
/** |
|
48 |
* 保留字节 |
|
49 |
*/ |
|
50 |
public byte[] szReserved = new byte[256]; |
|
51 |
|
|
52 |
public NET_CASERUNNING_AIRSWITCH_INFO() { |
|
53 |
} |
|
54 |
} |