package com.wgcloud.entity;
|
|
import java.util.Date;
|
|
/**
|
* @version v3.3
|
* @ClassName:FileWarnState.java
|
* @author: http://www.wgstart.com
|
* @date: 2021年1月16日
|
* @Description: app端口信息
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
public class FileWarnState extends BaseEntity {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* host名称
|
*/
|
private String hostname;
|
|
/**
|
* 告警内容
|
*/
|
private String warContent;
|
|
/**
|
* 告警文件信息id
|
*/
|
private String fileWarnId;
|
|
/**
|
* 文件完整路径
|
*/
|
private String filePath;
|
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getHostname() {
|
return hostname;
|
}
|
|
public void setHostname(String hostname) {
|
this.hostname = hostname;
|
}
|
|
public String getFilePath() {
|
return filePath;
|
}
|
|
public void setFilePath(String filePath) {
|
this.filePath = filePath;
|
}
|
|
public String getWarContent() {
|
return warContent;
|
}
|
|
public void setWarContent(String warContent) {
|
this.warContent = warContent;
|
}
|
|
public String getFileWarnId() {
|
return fileWarnId;
|
}
|
|
public void setFileWarnId(String fileWarnId) {
|
this.fileWarnId = fileWarnId;
|
}
|
}
|