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
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 421657
 * @description 支持灯光联动的能力集
 * @origin autoTool
 * @date 2023/10/19 17:27:53
 */
public class NET_LINKING_ABILITY extends NetSDKLib.SdkStructure {
    /**
     * /支持的非智能事件
     */
    public int[] emAnSupportEvents = new int[10];
    /**
     * /支持的非智能事件数量
     */
    public int nSupportEventsLen;
    /**
     * /支持的智能规则
     */
    public int[] emAnSupportIntelliScence = new int[40];
    /**
     * /支持的智能规则数量
     */
    public int nSupportIntelliScenceLen;
    /**
     * / 保留字节
     */
    public byte[] byReserved = new byte[128];
 
    public NET_LINKING_ABILITY() {
    }
}