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 2021/09/27
9  */
10 public class NET_PED_DETECTOR_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  行人检测器编号,1-16
13      */
14     public int nPedestrianDetectorNumber;
15
16     /**
17      *  行人检测器关联的相位
18      */
19     public int nPedestrianDetectorCallPhase;
20
21     /**
22      *  行人检测器对应的接线端子
23      */
24     public int nPedestrianDetectorPortNum;
25
26     /**
27      *  检测器类型1:行人按钮 2视频
28      */
29     public int nPedestrianDetectorType;
30
31     /**
32      *  视频检测器IP
33      */
34     public byte[] szPedestrianDetectorIp = new byte[16];
35
36     /**
37      *  视频检测器端口
38      */
39     public int nPedestrianDetectorPort;
40
41     /**
42      *  视频检测器用户名
43      */
44     public byte[] szPedestrianDetectorUser = new byte[72];
45
46     /**
47      *  视频检测器密码
48      */
49     public byte[] szPedestrianDetectorPwd = new byte[72];
50
51     /**
52      *  检测区1,2
53      */
54     public int nPedestrianDetectorArea;
55
56     /**
57      *  预留字节
58      */
59     public byte[] szReserved = new byte[32];
60 }