dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description CLIENT_SetPrivacyMaskingEnable 输入参数
8  * @date 2022/07/21 17:13:49
9  */
10 public class NET_IN_SET_PRIVACY_MASKING_ENABLE extends NetSDKLib.SdkStructure {
11     /**
12      * 结构体大小
13      */
14     public int dwSize;
15     /**
16      * 通道号
17      */
18     public int nChannel;
19     /**
20      * true 使能所有隐私遮挡块 false 关闭所有隐私遮挡块
21      */
22     public int bEnable;
23
24     public NET_IN_SET_PRIVACY_MASKING_ENABLE() {
25         this.dwSize = this.size();
26     }
27 }