提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author : 291189 |
|
7 |
* @since : Created in 2021/7/5 16:30 |
|
8 |
* CLIENT_GetPopulationStatistics 接口输出参数 |
|
9 |
*/ |
|
10 |
public class NET_OUT_GET_POPULATION_STATISTICS extends NetSDKLib.SdkStructure{ |
|
11 |
|
|
12 |
|
|
13 |
public int dwSize; // 结构体大小 |
|
14 |
public int nPassPopulation; // 正向通过人数 |
|
15 |
public int nMetalAlarmPopulation; // 正向触发金属报警人数 |
|
16 |
public int nReversePassPopulation; // 反向通过人数 |
|
17 |
public int nReverseMetalAlarmPopulation; // 反向触发金属报警人数 |
|
18 |
public long nTempNormalPopulation; // 体温正常人数 |
|
19 |
public long nTempAlarmPopulation; // 体温异常人数 |
|
20 |
|
|
21 |
public NET_OUT_GET_POPULATION_STATISTICS(){ |
|
22 |
this.dwSize=this.size(); |
|
23 |
} |
|
24 |
|
|
25 |
} |