提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /** 
6 * @author 251823
7 * @description 
8 * @date 2022/07/21 14:54:08
9 */
10 public class CFG_PRIVACY_MASKING_INFO extends NetSDKLib.SdkStructure {
11     /**
12      * 隐私遮挡配置个数
13      */
14     public int nMaskingInfoCount;                
15     /**
16      * 隐私遮挡配置信息
17      */
18     public CGF_MASKING_INFO[] stuMaskingInfo = new CGF_MASKING_INFO[64];
19         
20     public CFG_PRIVACY_MASKING_INFO() {
21         for (int i = 0; i < stuMaskingInfo.length; i++) {
22             stuMaskingInfo[i] = new CGF_MASKING_INFO();
23         }
24     }
25 }