Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description CLIENT_SetPrivacyMaskingEnable 输入参数
 * @date 2022/07/21 17:13:49
 */
public class NET_IN_SET_PRIVACY_MASKING_ENABLE extends NetSDKLib.SdkStructure {
    /**
     * 结构体大小
     */
    public int dwSize;
    /**
     * 通道号
     */
    public int nChannel;
    /**
     * true 使能所有隐私遮挡块 false 关闭所有隐私遮挡块
     */
    public int bEnable;
 
    public NET_IN_SET_PRIVACY_MASKING_ENABLE() {
        this.dwSize = this.size();
    }
}