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
package com.netsdk.lib.structure;
 
 
import com.netsdk.lib.NetSDKLib;
 
/**
 * @author 421657
 * @description 录像存储点映射配置信息
 * @origin autoTool
 * @date 2023/10/30 15:54:19
 */
public class CFG_RECORDTOSTORAGEPOINT_INFO extends NetSDKLib.SdkStructure {
    /**
     * 存储点数目
     */
    public int nStoragePointNum;
    /**
     * 存储点配置信息
     */
    public CFG_STORAGEPOINT_INFO[] stStoragePoints = new CFG_STORAGEPOINT_INFO[32];
 
    public CFG_RECORDTOSTORAGEPOINT_INFO() {
        for (int i = 0; i < stStoragePoints.length; i++) {
            stStoragePoints[i] = new CFG_STORAGEPOINT_INFO();
        }
    }
}