ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
package com.vci.server.workflow.objects;
 
import java.io.Serializable;
import java.util.Date;
 
import com.vci.common.objects.AbstractHistorizable;
 
public class ProcessTemplate implements Serializable {
    
    private static final long serialVersionUID = 84832963302215090L;
    
    private String id = "";
    private String processCategoryId = "";
    private long jbpmDeploymentId;
    private Date createTime = new Date();// timestamp(6) not null, --创建时间
    private String createUser = "";// not null, --创建者
    private String status = "";//状态
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getProcessCategoryId() {
        return processCategoryId;
    }
 
    public void setProcessCategoryId(String processCategoryId) {
        this.processCategoryId = processCategoryId;
    }
 
    public long getJbpmDeploymentId() {
        return jbpmDeploymentId;
    }
 
    public void setJbpmDeploymentId(long jbpmDeploymentId) {
        this.jbpmDeploymentId = jbpmDeploymentId;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getCreateUser() {
        return createUser;
    }
 
    public void setCreateUser(String createUser) {
        this.createUser = createUser;
    }
 
}