提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 291189 |
|
7 |
* @version 1.0 |
|
8 |
* @description 设备设息修改(增加、删除、修改)报警上报事件 (对应 NET_ALARM_DEVICE_MODIFIED) |
|
9 |
* @date 2022/7/19 11:17 |
|
10 |
*/ |
|
11 |
public class NET_ALARM_DEVICE_MODIFIED_INFO extends NetSDKLib.SdkStructure{ |
|
12 |
public int nAction; // 事件动作 0:脉冲 |
|
13 |
public int nChannel; // 通道号 |
|
14 |
public NET_TIME_EX stuUTC=new NET_TIME_EX(); // 事件发生的时间,标准的(不带时区偏差的)UTC时间 |
|
15 |
public byte[] szUser=new byte[32]; // 用户名称 |
|
16 |
/** |
|
17 |
* {@link com.netsdk.lib.enumeration.NET_EVENT_OPERATE_TYPE} |
|
18 |
*/ |
|
19 |
public int emOpType; // 操作类型 |
|
20 |
/** |
|
21 |
* {@link com.netsdk.lib.enumeration.NET_EVENT_DEVICE_TYPE} |
|
22 |
*/ |
|
23 |
public int emDeviceType; // 设备类型 |
|
24 |
public byte[] szReserved=new byte[1024];// 保留字节 |
|
25 |
} |