提交 | 用户 | 时间
|
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_PEDESTRAIN_PRIORITY_INFO extends NetSDKLib.SdkStructure{ |
|
11 |
/** |
|
12 |
* 周期编号 |
|
13 |
*/ |
|
14 |
public int nCycleNum; |
|
15 |
|
|
16 |
/** |
|
17 |
* 最小优先间隔, 优先执行后的冷却时长,冷却时间内不再响应新的优先请求(1~90) |
|
18 |
*/ |
|
19 |
public int nSuspendingPeriod; |
|
20 |
|
|
21 |
/** |
|
22 |
* 优先配置表个数 |
|
23 |
*/ |
|
24 |
public int nPhasePriorityConfigNum; |
|
25 |
|
|
26 |
/** |
|
27 |
* 优先配置表 |
|
28 |
*/ |
|
29 |
public NET_PHASE_PRIORITY_CONFIG_INFO[] stuphasePriorityConfigInfo = (NET_PHASE_PRIORITY_CONFIG_INFO[]) new NET_PHASE_PRIORITY_CONFIG_INFO().toArray(255); |
|
30 |
/** |
|
31 |
* 预留字节 |
|
32 |
*/ |
|
33 |
public byte[] szReserved = new byte[256]; |
|
34 |
} |