luohairen
2024-11-28 50fd1ca826d556657c09e4702a0f2de0d218b2c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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;
    }
}