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
package com.netsdk.lib.structure;
 
import com.netsdk.lib.NetSDKLib;
 
/**
 * @author 291189
 * @description 视频通道上的智能信息
 * @date 2022/07/04 14:04:51
 */
public class NET_INTELLI_INFO extends NetSDKLib.SdkStructure {
    /**
     * 智能规则类型个数
     */
    public int nTypeNum;
    /**
     * 智能规则类型
     */
    public Byte64Arr[] szType = new Byte64Arr[16];
    /**
     * 智能场景类型
     */
    public byte[] szClass = new byte[64];
    /**
     * 保留字节
     */
    public byte[] szReserved = new byte[516];
 
    public NET_INTELLI_INFO() {
        for (int i = 0; i < szType.length; i++) {
            szType[i] = new Byte64Arr();
        }
 
    }
}