潘志宝
2024-11-28 231897591c909b164defebfdb5936387ec2807d0
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  合规报警规则 
9 * @origin autoTool
10 * @date 2023/05/29 11:40:47
11 */
12 public class NET_COMPLIANT_INFO extends NetSDKLib.SdkStructure {
13 /** 
14 合规报警报警类型,0:不合规,1-合规, 2-不限(IVSS专用)
15 */
16 public            int                    nCompliantType;
17 /** 
18 合规条件使能, TRUE: 开启, FALSE-关闭,如果使能为TRUE上报合规相关属性
19 */
20 public            int                    bCompliantEnable;
21 /** 
22 合规报警属性过滤规则
23 */
24 public            NET_COMPLIANT_FORMAT_INFO                    stuCompliantFormat=new NET_COMPLIANT_FORMAT_INFO();
25 /** 
26 保留字节
27 */
28 public            byte[]                    szReserved=new byte[1024];
29
30 public NET_COMPLIANT_INFO(){
31 }
32 }