提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 421657 |
|
8 |
* @description 录像存储点映射配置信息 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/10/30 15:54:19 |
|
11 |
*/ |
|
12 |
public class CFG_RECORDTOSTORAGEPOINT_INFO extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
* 存储点数目 |
|
15 |
*/ |
|
16 |
public int nStoragePointNum; |
|
17 |
/** |
|
18 |
* 存储点配置信息 |
|
19 |
*/ |
|
20 |
public CFG_STORAGEPOINT_INFO[] stStoragePoints = new CFG_STORAGEPOINT_INFO[32]; |
|
21 |
|
|
22 |
public CFG_RECORDTOSTORAGEPOINT_INFO() { |
|
23 |
for (int i = 0; i < stStoragePoints.length; i++) { |
|
24 |
stStoragePoints[i] = new CFG_STORAGEPOINT_INFO(); |
|
25 |
} |
|
26 |
} |
|
27 |
} |