mirror of
https://github.com/Estom/notes.git
synced 2026-02-04 11:04:21 +08:00
Java内容重新整理删除过期的东西
This commit is contained in:
105
Java/JavaDemo/codedemo/mybatis/entity/MonitNotifyHistory.java
Normal file
105
Java/JavaDemo/codedemo/mybatis/entity/MonitNotifyHistory.java
Normal file
@@ -0,0 +1,105 @@
|
||||
package cn.aofeng.demo.mybatis.entity;
|
||||
|
||||
/**
|
||||
* 监控通知历史实体类。
|
||||
*
|
||||
* @author <a href="mailto:aofengblog@163.com">聂勇</a>
|
||||
*/
|
||||
public class MonitNotifyHistory {
|
||||
private Long recordId;
|
||||
|
||||
private Integer monitId;
|
||||
|
||||
private Integer appId;
|
||||
|
||||
private Integer notifyType;
|
||||
|
||||
private Integer notifyTarget;
|
||||
|
||||
private String notifyContent;
|
||||
|
||||
private Integer status;
|
||||
|
||||
private Integer retryTimes;
|
||||
|
||||
private Long createTime;
|
||||
|
||||
public Long getRecordId() {
|
||||
return recordId;
|
||||
}
|
||||
|
||||
public void setRecordId(Long recordId) {
|
||||
this.recordId = recordId;
|
||||
}
|
||||
|
||||
public Integer getMonitId() {
|
||||
return monitId;
|
||||
}
|
||||
|
||||
public void setMonitId(Integer monitId) {
|
||||
this.monitId = monitId;
|
||||
}
|
||||
|
||||
public Integer getAppId() {
|
||||
return appId;
|
||||
}
|
||||
|
||||
public void setAppId(Integer appId) {
|
||||
this.appId = appId;
|
||||
}
|
||||
|
||||
public Integer getNotifyType() {
|
||||
return notifyType;
|
||||
}
|
||||
|
||||
public void setNotifyType(Integer notifyType) {
|
||||
this.notifyType = notifyType;
|
||||
}
|
||||
|
||||
public Integer getNotifyTarget() {
|
||||
return notifyTarget;
|
||||
}
|
||||
|
||||
public void setNotifyTarget(Integer notifyTarget) {
|
||||
this.notifyTarget = notifyTarget;
|
||||
}
|
||||
|
||||
public String getNotifyContent() {
|
||||
return notifyContent;
|
||||
}
|
||||
|
||||
public void setNotifyContent(String notifyContent) {
|
||||
this.notifyContent = notifyContent;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getRetryTimes() {
|
||||
return retryTimes;
|
||||
}
|
||||
|
||||
public void setRetryTimes(Integer retryTimes) {
|
||||
this.retryTimes = retryTimes;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "MonitNotifyHistory [recordId=" + recordId + ", monitId=" + monitId + ", appId=" + appId + ", notifyType=" + notifyType + ", notifyTarget="
|
||||
+ notifyTarget + ", notifyContent=" + notifyContent + ", status=" + status + ", retryTimes=" + retryTimes + ", createTime=" + createTime + "]";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user