田源
2024-08-23 9e20b9fb77a41cb5b4a6eb6213fc51cab1f0bb91
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package com.vci.dto;
 
/**
 * 流程模板对象
 * @author weidy
 * @date 2021-2-12
 */
public class ProcessTemplateVO implements java.io.Serializable{
    
    /**
     * 序列化
     */
    private static final long serialVersionUID = 3009194108520576444L;
 
    /**
     * 流程引擎里的部署主键
     */
    private String deploymentId;
    
    /**
     * 流程的主键
     */
    private String oid;
    
    /**
     * 流程的名称
     */
    private String name;
    
    /**
     * 流程的key
     */
    private String key;
    
    /**
     * 流程的版本
     */
    private int version;
    
    /**
     * 流程分类的主键
     */
    private String categroyOid ;
 
    /**
     * 任务的类型
     */
    private String taskType ;
    
    /**
     * 流程定义的状态
     */
    private String status ;
 
 
    public String getDeploymentId() {
        return deploymentId;
    }
 
    public void setDeploymentId(String deploymentId) {
        this.deploymentId = deploymentId;
    }
 
    public String getOid() {
        return oid;
    }
 
    public void setOid(String oid) {
        this.oid = oid;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public int getVersion() {
        return version;
    }
 
    public void setVersion(int version) {
        this.version = version;
    }
 
    public String getCategroyOid() {
        return categroyOid;
    }
 
    public void setCategroyOid(String categroyOid) {
        this.categroyOid = categroyOid;
    }
 
    public String getTaskType() {
        return taskType;
    }
 
    public void setTaskType(String taskType) {
        this.taskType = taskType;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    @Override
    public String toString() {
        return "ProcessTemplateVO{" +
                "deploymentId='" + deploymentId + '\'' +
                ", oid='" + oid + '\'' +
                ", name='" + name + '\'' +
                ", key='" + key + '\'' +
                ", version=" + version +
                ", categroyOid='" + categroyOid + '\'' +
                ", taskType='" + taskType + '\'' +
                ", status='" + status + '\'' +
                '}';
    }
}