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 421657
8  * @description 用户锁定报警事件, 对应 DH_ALARM_USERLOCK
9  * @origin autoTool
10  * @date 2023/11/28 15:07:03
11  */
12 public class ALARM_USERLOCK_INFO extends NetSDKLib.SdkStructure {
13     /**
14      * / 时间戳(单位是毫秒)
15      */
16     public double dbPTS;
17     /**
18      * / 事件发生的时间
19      */
20     public NET_TIME_EX stuTime = new NET_TIME_EX();
21     /**
22      * / 事件ID
23      */
24     public int nEventID;
25     /**
26      * / 用户名
27      */
28     public byte[] szUserName = new byte[128];
29     /**
30      * / 组名
31      */
32     public byte[] szGroup = new byte[128];
33     /**
34      * / 非法登录的IP
35      */
36     public byte[] szIllegalLoginIP = new byte[40];
37     /**
38      * / 事件公共扩展字段结构体
39      */
40     public NET_EVENT_INFO_EXTEND stuEventInfoEx = new NET_EVENT_INFO_EXTEND();
41     /**
42      * / 保留字节
43      */
44     public byte[] byReserved = new byte[1024];
45
46     public ALARM_USERLOCK_INFO() {
47     }
48 }