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/28
9  */
10 public class NET_LANE_PLAN_LIST_INFO extends NetSDKLib.SdkStructure{
11      /**
12      *  可变车道指示牌号
13      */
14     public int nVarlaneId;
15
16     /**
17      *  可变车道编号(车道配置页面编号)
18      */
19     public int nVarlaneNumber;
20
21     /**
22      *  保持时间(分钟)0-1440
23      */
24     public int nKeepTime;
25
26     /**
27      *  1:固定方案; 2:自适应双向切换; 3:定向切换
28      */
29     public int nControlMode;
30
31     /**
32      *  当前属性 1:左转2:直行(潮汐)3:右转4:掉头5:禁行(匝道)6:通行(匝道)7:反向(潮汐)
33      */
34     public int nCurrentVarlaneProperty;
35
36     /**
37      *  属性计划表个数
38      */
39     public int nPropertyPlanListNum;
40
41     /**
42      *  属性计划表
43      */
44     public NET_PROPERTY_PLAN_LIST_INFO[] stuPropertyPlanInfo = (NET_PROPERTY_PLAN_LIST_INFO[]) new NET_PROPERTY_PLAN_LIST_INFO().toArray(7);
45     
46     /**
47      *  预留字节
48      */
49     public byte[] szReserved = new byte[32];
50 }