Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 相位列表信息
 * @date 2021/09/02
 */
public class NET_PHASES_INFO extends NetSDKLib.SdkStructure{
     /**
     *  相位在栅栏内的位置
     */
    public int nGridNo;
 
    /**
     *  相位编号
     */
    public int nPhaseNum;
 
    /**
     *  相位重复出现的次数,默认为1, A1为1,A2该字段为
     */
    public int nPhaseOrder;
 
    /**
     *  迟起时间
     */
    public int nStartDelayTime;
 
    /**
     *  预黄时间
     */
    public int nStartYellowTime;
 
    /**
     *  绿信比时间(迟起+预黄+绿灯+绿闪+黄灯+红灯)
     */
    public int nGreenTime;
 
    /**
     *  绿闪时间
     */
    public int nGreenFlashTime;
 
    /**
     *  黄灯时间
     */
    public int nYellowTime;
 
    /**
     *  红灯清空
     */
    public int nRedclearTime;
 
    /**
     *  最小绿灯时间
     */
    public int nMinimumGreen;
 
    /**
     *  最大绿灯时间
     */
    public int nMaximumGreen;
 
    /**
     *  感应控制递减前时间
     */
    public int nBeforeReduction;
 
    /**
     *  感应控制延长绿时间
     */
    public int nAddedInitial;
 
    /**
     *  相位保持状态 0-不保持,1-黄闪,2-常红,3-红闪,4-灭灯
     */
    public int nPhaseKeepState;
 
    /**
     *  相位是否启用感应控制
     */
    public boolean bFreeEnable;
 
    /**
     *  启用的检测器个数
     */
    public int nSelectDetectorsNum;
 
    /**
     *  启用的检测器编号
     */
    public int[] nSelectDetectors = new int[128];
 
    /**
     *  预留字节
     */
    public byte[] szReserved = new byte[32];
}