houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5 import com.sun.jna.Pointer;
6
7 /** 
8 * @author 291189
9 * @description  年龄过滤条件 
10 * @origin autoTool
11 * @date 2023/05/29 11:40:41
12 */
13 public class NET_HUMAN_AGE_INFO extends NetSDKLib.SdkStructure {
14 /** 
15 是否过滤启用: TRUE-下发该配置  FALSE-不下发该配置
16 */
17 public            int                    bEnable;
18 /** 
19 过滤显示的年龄段的个数,最大值是16
20 */
21 public            int                    nShowListNums;
22 /** 
23 过滤显示的年龄段
24 */
25 public            int[]                    emHumanAgeShowList=new int[16];
26 /** 
27 年龄段信息的描述信息, 内存由用户申请和释放, 申请大小sizeof(NET_HUMAN_DESC_INFO)*nShowListNums
28 */
29 public Pointer pstuHumanDesc;
30 /** 
31 保留字节
32 */
33 public            byte[]                    szReserved=new byte[256];
34
35 public            NET_HUMAN_AGE_INFO(){
36 }
37 }