package com.iailab.module.event.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年05月30日
|
*/
|
@Data
|
@Schema(name = "中选事件信息表")
|
public class EventInfoDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
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;
|
}
|