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 RTSC灯暂停事件, 对应事件类型 NET_ALARM_RTSC_LAMP_RUNING
8  * @date 2021/08/30
9  */
10 public class ALARM_RTSC_LAMP_RUNNING_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  通道号,从0开始
13      */
14     public int nChannelID;
15
16     /**
17      *  事件动作, 1表示开始, 2表示结束, -1表示未知
18      */
19     public int nEventAction;
20
21     /**
22      *  当前运行模式,参考枚举{ @link EM_CURRENT_OPERATE_MODE }
23      */
24     public int emCurOperateMode;
25
26     /**
27      *  运行灯组个数
28      */
29     public int nRunLampNum;
30
31     /**
32      *  运行灯组信息
33      */
34     public RUN_LAMP_INFO[] stuRunLampInfo = (RUN_LAMP_INFO[]) new RUN_LAMP_INFO().toArray(16);
35     /**
36      *  预留字节
37      */
38     public byte[] byReserved = new byte[512];
39
40 }