提交 | 用户 | 时间
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:41
11 */
12 public class NET_HUMAN_SEX_INFO extends NetSDKLib.SdkStructure {
13 /** 
14 是否过滤启用: TRUE-下发该配置  FALSE-不下发该配置
15 */
16 public            int                    bEnable;
17 /** 
18 过滤显示的性别的个数,最大值是2
19 */
20 public            int                    nShowListNums;
21 /** 
22 过滤显示的性别
23 */
24 public            int[]                    emHumanSexShowList=new int[2];
25 /** 
26 保留字节
27 */
28 public            byte[]                    szReserved=new byte[256];
29
30 public            NET_HUMAN_SEX_INFO(){
31 }
32 }