Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description ZIGBEE开关
8  * @date 2023/05/11 13:59:24
9  */
10 public class NET_CONTROL_CASE_ZIGBEE_INFO extends NetSDKLib.SdkStructure {
11     /**
12      * 使能开关
13      */
14     public int bEnable;
15     /**
16      * 信道
17      */
18     public int nChannel;
19     /**
20      * 节点号
21      */
22     public byte[] szPanID = new byte[64];
23     /**
24      * 保留字节
25      */
26     public byte[] szReserved = new byte[256];
27
28     public NET_CONTROL_CASE_ZIGBEE_INFO() {
29     }
30 }