提交 | 用户 | 时间
|
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_LANE_LIST_INFO extends NetSDKLib.SdkStructure{ |
|
11 |
/** |
|
12 |
* 车道编号 |
|
13 |
*/ |
|
14 |
public int nLaneNumber; |
|
15 |
|
|
16 |
/** |
|
17 |
* 车行灯进口方向车道类型 |
|
18 |
*/ |
|
19 |
public int nLaneType; |
|
20 |
|
|
21 |
/** |
|
22 |
* 是否为待行区 0为车道不是待行区,1标示车道有待行区 |
|
23 |
*/ |
|
24 |
public int nWaitingArea; |
|
25 |
|
|
26 |
/** |
|
27 |
* 预留字节 |
|
28 |
*/ |
|
29 |
public byte[] szReserved = new byte[32]; |
|
30 |
} |