houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure.optimized;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 灯组灯色信息
8  * @date 2022/11/28 09:35:44
9  */
10 public class LAMP_GROUP_INFO_V1 extends NetSDKLib.SdkStructure {
11     /**
12      * 灯组编号
13      */
14     public int nLampNo;
15     /**
7412dd 16      * 灯组类型 {@link com.iailab.netsdk.lib.enumeration.EM_LAMP_TYPE}
149dd0 17      */
H 18     public int emLampType;
19     /**
20      * 信号灯组灯色剩余时间,整数,单位为秒(s)
21      */
22     public int nRemainTime;
23     /**
24      * 灯组灯色个数
25      */
26     public int nLampColorCount;
27     /**
28      * 灯组灯色当灯组类型为1~12时,int[0]表示红色发光单元,int[1]表示黄色发光单元,int[2]表示绿色发光单元,int[3]保留
29      * 当灯组类型为13~15时,int[0]用于表示禁止通行信号发光单元,int[1]用于表示过渡信号发光单元,int[2]用于表示通行信号发光单元,int[3]保留
30      * 具体取值 0:无灯 1:灭灯 2:亮灯3:闪烁
31      */
32     public int[] nLampColor = new int[4];
33
34     public LAMP_GROUP_INFO_V1() {
35     }
36 }