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/01
9  */
10 public class STEP_INFO extends NetSDKLib.SdkStructure{
11      /**
12      *  进口方向
13      */
14     public int nEnterDir;
15
16     /**
17      *  进口灯组数量
18      */
19     public int nEnterLampNumber;
20
21     /**
22      *  灯色信息个数
23      */
24     public int nLampInfoNum;
25
26     /**
27      *  灯色信息(0~10)包含1到M(进口灯组数量)个灯色信息 
28      */
29     public LAMP_INFO[] stuLightColorInfo = (LAMP_INFO[]) new LAMP_INFO().toArray(10);
30     /**
31      *  预留字节 
32      */
33     public byte[] byReserved = new byte[128];
34 }