1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 灯组色步信息
 * @date 2021/09/01
 */
public class STEP_INFO extends NetSDKLib.SdkStructure{
     /**
     *  进口方向
     */
    public int nEnterDir;
 
    /**
     *  进口灯组数量
     */
    public int nEnterLampNumber;
 
    /**
     *  灯色信息个数
     */
    public int nLampInfoNum;
 
    /**
     *  灯色信息(0~10)包含1到M(进口灯组数量)个灯色信息 
     */
    public LAMP_INFO[] stuLightColorInfo = (LAMP_INFO[]) new LAMP_INFO().toArray(10);
    /**
     *  预留字节 
     */
    public byte[] byReserved = new byte[128];
}