package com.netsdk.lib.structure;

import com.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();
    }

}