提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 251823 |
|
7 |
* @description 报警区域列表 |
|
8 |
* @date 2022/01/07 |
|
9 |
*/ |
|
10 |
public class NET_GETSUMMARY_REGION_LIST_INFO extends NetSDKLib.SdkStructure{ |
|
11 |
/** |
|
12 |
* 区域ID |
|
13 |
*/ |
|
14 |
public int nRegionID; |
|
15 |
|
|
16 |
/** |
|
17 |
* 区域内人数统计值 |
|
18 |
*/ |
|
19 |
public int nPeopleNum; |
|
20 |
|
|
21 |
/** |
|
22 |
* 区域坐标个数 |
|
23 |
*/ |
|
24 |
public int nRegionPointNum; |
|
25 |
|
|
26 |
/** |
|
27 |
* 区域坐标 |
|
28 |
*/ |
|
29 |
public NetSDKLib.NET_POINT[] stuRegionPoint = (NetSDKLib.NET_POINT[]) new NetSDKLib.NET_POINT().toArray(20); |
|
30 |
/** |
|
31 |
* 保留字节 |
|
32 |
*/ |
|
33 |
public byte[] szReserved = new byte[1024]; |
|
34 |
|
|
35 |
} |