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 LAMP_GROUP_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  灯组编号
13      */
14     public int nLampNo;
15
16     /**
17      *  灯组类型,参考{ @link EM_LAMP_TYPE }
18      */
19     public int emLampType;
20
21     /**
22      *  信号灯组灯色剩余时间,整数,单位为秒(s)
23      */
24     public int nRemainTime;
25
26     /**
27      *  灯组灯色个数
28      */
29     public int nLampColorCount;
30
31     /**
32      *  灯组灯色 0:无灯1:灭灯2:亮灯3:闪烁 ,参考{ @link EM_LAMP_COLOR}
33      */
34     public int[] nLampColor = new int[4];
35
36     /**
37      *  预留字节
38      */
39     public byte[] byReserved = new byte[128];
40
41 }