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_VARLANE_PLAN_LIST_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  可变车道方案编号(0表示未配置)
13      */
14     public int nVarlanePatternNumber;
15
16     /**
17      *  可变车道方案名称
18      */
19     public byte[] szVarlanePatternName = new byte[64];
20
21     /**
22      *  计划表个数
23      */
24     public int nLanePlanNum;
25
26     /**
27      *  计划表
28      */
29     public NET_LANE_PLAN_LIST_INFO[] stuLanePlanInfo = (NET_LANE_PLAN_LIST_INFO[]) new NET_LANE_PLAN_LIST_INFO().toArray(12);
30     /**
31      *  预留字节
32      */
33     public byte[] szReserved = new byte[32];
34 }