提交 | 用户 | 时间
|
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/02 |
|
9 |
*/ |
|
10 |
public class NET_CHANNELS_INFO extends NetSDKLib.SdkStructure{ |
|
11 |
/** |
|
12 |
* 通道编号 |
|
13 |
*/ |
|
14 |
public int nChannelNumber; |
|
15 |
|
|
16 |
/** |
|
17 |
* 通道关联的相位或跟随相位,相位编号从1开始 |
|
18 |
*/ |
|
19 |
public int nChannelPhase; |
|
20 |
|
|
21 |
/** |
|
22 |
* 通道所接灯组的类型 | 16 圆盘灯 | 17 左转箭头灯 | 18 直行箭头灯 | 19 右转箭头灯 | 20 掉头箭头灯 | 21 单个行人灯| 22 左转非机动车灯 | 23 直行非机动车灯 | 24 公交信号灯 | 25 入口行人灯,进口为实线有箭头线的斑马线区 | 26 出口行人灯,出口为虚线无箭头线的斑马线区 | |
|
23 |
*/ |
|
24 |
public int nLampType; |
|
25 |
|
|
26 |
/** |
|
27 |
* 通道所接灯组的所在路口;0-单路口,1-短连接路口1,2-短连接路口 |
|
28 |
*/ |
|
29 |
public int nCrossType; |
|
30 |
|
|
31 |
/** |
|
32 |
* 进口方向 | 0 北 | 1 东北 | 2 东| 3 东南 | 4 南 | 5 西南 | 6 西 | 7 西北 | |
|
33 |
*/ |
|
34 |
public int nRoadSectionDir; |
|
35 |
|
|
36 |
/** |
|
37 |
* 通道类型;1-其他,2-机动车,3-行人 |
|
38 |
*/ |
|
39 |
public int nChannelControlType; |
|
40 |
|
|
41 |
/** |
|
42 |
* 预留字节 |
|
43 |
*/ |
|
44 |
public byte[] szReserved = new byte[32]; |
|
45 |
|
|
46 |
} |