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
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author : 291189
 * @since : Created in 2021/7/5 16:30
 * CLIENT_GetPopulationStatistics 接口输出参数
 */
public class NET_OUT_GET_POPULATION_STATISTICS extends NetSDKLib.SdkStructure{
 
 
    public int                        dwSize;                         // 结构体大小
    public int                        nPassPopulation;                // 正向通过人数
    public int                        nMetalAlarmPopulation;          // 正向触发金属报警人数
    public int                        nReversePassPopulation;         // 反向通过人数
    public int                        nReverseMetalAlarmPopulation;   // 反向触发金属报警人数
    public long                        nTempNormalPopulation;          // 体温正常人数
    public long                        nTempAlarmPopulation;           // 体温异常人数
 
    public NET_OUT_GET_POPULATION_STATISTICS(){
        this.dwSize=this.size();
    }
 
}