潘志宝
2024-11-28 231897591c909b164defebfdb5936387ec2807d0
提交 | 用户 | 时间
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_PEOPLE_REGION_INFO extends NetSDKLib.SdkStructure {
11     /**
12      * 区域名称
13      */
14     public byte[] szRegionName = new byte[128];
15     /**
16      * 当前时间点统计区内人数
17      */
18     public int nRegionPeopleNum;
19     /**
20      * 保留字节
21      */
22     public byte[] reserved = new byte[1020];
23
24     public NET_PEOPLE_REGION_INFO() {
25     }
26 }