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;
|
|
}
|