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