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