67 lines
2.0 KiB
Java
67 lines
2.0 KiB
Java
|
|
package com.nis.domain;
|
|||
|
|
|
|||
|
|
import java.util.Date;
|
|||
|
|
|
|||
|
|
import com.nis.domain.configuration.BaseCfg;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 定时任务执行信息 schedule_exce_log/schedule_exce_new
|
|||
|
|
* `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键自增',
|
|||
|
|
`schedule_id` bigint(20) NOT NULL COMMENT 'schedule_info 表的主键',
|
|||
|
|
`exce_time` datetime DEFAULT NULL COMMENT '最新执行时间',
|
|||
|
|
`issue_status` int(255) DEFAULT NULL COMMENT '下发状态:1:生效,0:失效',
|
|||
|
|
`issue_result` int(255) DEFAULT NULL COMMENT '下发结果:1:成功,0:失败',
|
|||
|
|
`error_info` varchar(255) DEFAULT NULL COMMENT '下发失败原因',
|
|||
|
|
`compile_id` bigint(20) DEFAULT NULL COMMENT '编译id',
|
|||
|
|
* @author fang
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
public class ScheduleExceInfo extends BaseCfg<ScheduleExceInfo>{
|
|||
|
|
private static final long serialVersionUID = 7151915080876949497L;
|
|||
|
|
|
|||
|
|
private Long scheduleId;//定时器id
|
|||
|
|
private Date exceTime;//下发时间
|
|||
|
|
private Integer issueStatus;//下发 的状态
|
|||
|
|
private Integer issueResult;//下发结果
|
|||
|
|
private String errorInfo;//动态where 条件
|
|||
|
|
private Integer isIssue;//是否需要下发配置,1:需要,0:不需要
|
|||
|
|
|
|||
|
|
public Long getScheduleId() {
|
|||
|
|
return scheduleId;
|
|||
|
|
}
|
|||
|
|
public void setScheduleId(Long scheduleId) {
|
|||
|
|
this.scheduleId = scheduleId;
|
|||
|
|
}
|
|||
|
|
public Date getExceTime() {
|
|||
|
|
return exceTime;
|
|||
|
|
}
|
|||
|
|
public void setExceTime(Date exceTime) {
|
|||
|
|
this.exceTime = exceTime;
|
|||
|
|
}
|
|||
|
|
public Integer getIssueStatus() {
|
|||
|
|
return issueStatus;
|
|||
|
|
}
|
|||
|
|
public void setIssueStatus(Integer issueStatus) {
|
|||
|
|
this.issueStatus = issueStatus;
|
|||
|
|
}
|
|||
|
|
public Integer getIssueResult() {
|
|||
|
|
return issueResult;
|
|||
|
|
}
|
|||
|
|
public void setIssueResult(Integer issueResult) {
|
|||
|
|
this.issueResult = issueResult;
|
|||
|
|
}
|
|||
|
|
public String getErrorInfo() {
|
|||
|
|
return errorInfo;
|
|||
|
|
}
|
|||
|
|
public void setErrorInfo(String errorInfo) {
|
|||
|
|
this.errorInfo = errorInfo;
|
|||
|
|
}
|
|||
|
|
public Integer getIsIssue() {
|
|||
|
|
return isIssue;
|
|||
|
|
}
|
|||
|
|
public void setIsIssue(Integer isIssue) {
|
|||
|
|
this.isIssue = isIssue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|