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
35
36
37
38
39
40
| package com.iailab.netsdk.lib.structure;
|
| import com.iailab.netsdk.lib.NetSDKLib;
|
| /**
| * @author 251823
| * @description RTSC灯暂停事件, 对应事件类型 NET_ALARM_RTSC_LAMP_RUNING
| * @date 2021/08/30
| */
| public class ALARM_RTSC_LAMP_RUNNING_INFO extends NetSDKLib.SdkStructure{
| /**
| * 通道号,从0开始
| */
| public int nChannelID;
|
| /**
| * 事件动作, 1表示开始, 2表示结束, -1表示未知
| */
| public int nEventAction;
|
| /**
| * 当前运行模式,参考枚举{ @link EM_CURRENT_OPERATE_MODE }
| */
| public int emCurOperateMode;
|
| /**
| * 运行灯组个数
| */
| public int nRunLampNum;
|
| /**
| * 运行灯组信息
| */
| public RUN_LAMP_INFO[] stuRunLampInfo = (RUN_LAMP_INFO[]) new RUN_LAMP_INFO().toArray(16);
| /**
| * 预留字节
| */
| public byte[] byReserved = new byte[512];
|
| }
|
|