提交 | 用户 | 时间
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/12/12 13:43:42
9  */
10 public class NET_CB_VIDEOSTAT_STREAM extends NetSDKLib.SdkStructure {
11     /**
12      * 统计通道号
13      */
14     public int nChannel;
15     /**
16      * 预置点编号默认值为0,球机必填,范围1~PtzPresetMax,IPC可不填。
17      */
18     public int nPtzPresetId;
19     /**
20      * 规则名称
21      */
22     public byte[] szRuleNanme = new byte[128];
23     /**
24      * 当前这一统计周期的开始时间
25      */
26     public byte[] szStartTime = new byte[20];
27     /**
28      * "NumberStat":人数统计
29      */
30     public byte[] szRuleType = new byte[32];
31     /**
32      * 粒度 {@link com.netsdk.lib.enumeration.EM_STAT_GRANULARITY}
33      */
34     public int emStatGranularity;
35     /**
36      * 与Granularity结合使用,如emGranularity为 EM_GRANULARITY_MINUTE, Cycle
37      * 值为5,表示以5分钟统计周期上报数据
38      */
39     public short nCycle;
40     /**
41      * 区域ID,没有该字段或者为0,为单区域
42      */
43     public short nAreaID;
44     /**
45      * 本周期内进入人数小计
46      */
47     public int nEnteredSubtotal;
48     /**
49      * 本周期内离开人数小计
50      */
51     public int nExitedSubtotal;
52     /**
53      * 本周期内经过人数小计
54      */
55     public int nPassedSubtotal;    
56     /**
57      * 本周期区域内滞留人员统计信息, bIsSendMinStayTime为TRUE时有效
58      */
59     public NET_INSIDE_SUB_TOTAL_INFO stuInsideSubtotal = new NET_INSIDE_SUB_TOTAL_INFO();
60     /**
61      * 保留字节
62      */
63     public byte[] szReserved = new byte[940];
64
65     public NET_CB_VIDEOSTAT_STREAM() {
66     }
67 }