houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
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/10/29 09:36:29
9  */
10 public class NET_VIDEOSTAT_CROWD_DISTRI_MAP extends NetSDKLib.SdkStructure {
11     /**
12      * 时间
13      */
14     public NET_TIME_EX UTC = new NET_TIME_EX();
15     /**
16      * 通道号
17      */
18     public int nChannelID;
19     /**
20      * 预置点编号
21      */
22     public int nPtzPresetId;
23     /**
24      * 统计区个数
25      */
26     public int nRegionNum;
27     /**
28      * 统计区列表, 实际个数和nRegionNum保持一致
29      */
30     public NET_PEOPLE_REGION_INFO[] stuRegionList = new NET_PEOPLE_REGION_INFO[16];
31     /**
32      * 保留字节
33      */
34     public byte[] reserved = new byte[1024];
35
36     public NET_VIDEOSTAT_CROWD_DISTRI_MAP() {
37         for (int i = 0; i < stuRegionList.length; i++) {
38             stuRegionList[i] = new NET_PEOPLE_REGION_INFO();
39         }
40     }
41 }