houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3
4 import com.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  区域报警事件(对应事件 DH_ALARM_AREAALARM) 
9 * @date 2022/07/19 19:31:27
10 */
11 public class ALARM_AREAALARM_INFO extends NetSDKLib.SdkStructure {
12 /** 
13 区域号
14 */
15 public            int                    nAreaIndex;
16 /** 
17 事件ID
18 */
19 public            int                    nEventID;
20 /** 
21 事件发生的时间
22 */
23 public NET_TIME_EX UTC=new NET_TIME_EX();
24 /** 
25 名称
26 */
27 public            byte[]                    szName=new byte[128];
28 /** 
29 防区类型 {@link com.netsdk.lib.enumeration.EM_DEFENCE_AREA_TYPE}
30 */
31 public            int                    emDefenceAreaType;
32 /** 
33 触发的通道号
34 */
35 public            int                    nIndex;
36 /** 
37 触发类型 {@link com.netsdk.lib.enumeration.EM_AREAALARM_TRIGGER_TYPE}
38 */
39 public            int                    emTrigerType;
40 /** 
41 保留扩展字节
42 */
43 public            byte[]                    byReserved=new byte[1024];
44
45 public ALARM_AREAALARM_INFO(){
46 }
47 }