houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.iailab.module.event.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@TableName("t_event_info")
public class EventInfoEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * ID
     */
    @TableId(type = IdType.INPUT)
    private String id;
 
    /**
     * 记录时间
     */
    private String logTime;
 
    /**
     * 事件发生时间
     */
    private String eventTime;
 
    /**
     * 系统Key
     */
    private String systemKey;
 
    /**
     * 系统名称
     */
    private String systemName;
 
    /**
     * 事件Key
     */
    private String eventKey;
 
    /**
     * 事件名称
     */
    private String eventName;
 
    /**
     * 消息
     */
    private String message;
 
    /**
     * 事件分类
     */
    private String eventCategory;
 
    /**
     * 事件等级,1低,2中,3高
     */
    private Integer eventLevel;
 
    /**
     * 数据创建时间
     */
    private Date createTime;
 
}