package com.boying.entity;
|
|
import java.util.Date;
|
|
/**
|
* @version v3.3
|
* @ClassName:LogInfo.java
|
* @author: http://www.wgstart.com
|
* @date: 2021年1月16日
|
* @Description: 系统日志信息
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
public class LogInfo extends BaseEntity {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 标题
|
*/
|
private String hostname;
|
|
/**
|
* 描述
|
*/
|
private String infoContent;
|
|
/**
|
* 1业务告警,2系统操作
|
*/
|
private String state;
|
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
|
public String getHostname() {
|
return hostname;
|
}
|
|
|
public void setHostname(String hostname) {
|
this.hostname = hostname;
|
}
|
|
|
public String getInfoContent() {
|
return infoContent;
|
}
|
|
|
public void setInfoContent(String infoContent) {
|
this.infoContent = infoContent;
|
}
|
|
|
public String getState() {
|
return state;
|
}
|
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
|
}
|