package com.ycl.system.domain;
|
|
import java.util.Date;
|
|
public class DeadLetterJob {
|
|
String id;
|
|
Date dueDate;
|
|
String exceptionMessage;
|
|
String jobHandlerType;
|
|
String jobType;
|
|
String processDefId;
|
|
String processInstanceId;
|
|
String executionId;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Date getDueDate() {
|
return dueDate;
|
}
|
|
public void setDueDate(Date dueDate) {
|
this.dueDate = dueDate;
|
}
|
|
public String getExceptionMessage() {
|
return exceptionMessage;
|
}
|
|
public void setExceptionMessage(String exceptionMessage) {
|
this.exceptionMessage = exceptionMessage;
|
}
|
|
public String getJobHandlerType() {
|
return jobHandlerType;
|
}
|
|
public void setJobHandlerType(String jobHandlerType) {
|
this.jobHandlerType = jobHandlerType;
|
}
|
|
public String getJobType() {
|
return jobType;
|
}
|
|
public void setJobType(String jobType) {
|
this.jobType = jobType;
|
}
|
|
public String getProcessDefId() {
|
return processDefId;
|
}
|
|
public void setProcessDefId(String processDefId) {
|
this.processDefId = processDefId;
|
}
|
|
public String getProcessInstanceId() {
|
return processInstanceId;
|
}
|
|
public void setProcessInstanceId(String processInstanceId) {
|
this.processInstanceId = processInstanceId;
|
}
|
|
public String getExecutionId() {
|
return executionId;
|
}
|
|
public void setExecutionId(String executionId) {
|
this.executionId = executionId;
|
}
|
}
|