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
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.server.workflow.objects;
 
import java.io.Serializable;
 
import com.vci.common.annotaion.CustomAnnotaion;
import com.vci.common.objects.AbstractHistorizable;
@CustomAnnotaion(CustomDescription = "流程对象")
public class FlowInstance extends AbstractHistorizable implements Serializable {
    @CustomAnnotaion(CustomDescription = "ID",InToString = false)
    private String id;
    @CustomAnnotaion(CustomDescription = "执行ID",InToString = false)
    private String executionid;
    @CustomAnnotaion(CustomDescription = "发起人",InToString = false)
    private String applicant;
    @CustomAnnotaion(CustomDescription = "创建人",InToString = false)
    private String creator;
    @CustomAnnotaion(CustomDescription = "模板ID",InToString = false)
    private String templatePuid;
    @CustomAnnotaion(CustomDescription = "模板名称")
    private String templateName;
    @CustomAnnotaion(CustomDescription = "分类ID",InToString = false)
    private String clsfOid;
    @CustomAnnotaion(CustomDescription = "表名",InToString = false)
    private String tableName;
    @CustomAnnotaion(CustomDescription = "描述")
    private String desc;
    @CustomAnnotaion(CustomDescription = "流程类型",InToString = false)
    private String processType;
    private String processName;
    
    //add  by liud 2012-12-25
    @CustomAnnotaion(CustomDescription = "任务类型",InToString = false)
    private String taskType;
    
    public String getTaskType() {
        return taskType;
    }
 
    public void setTaskType(String taskType) {
        this.taskType = taskType;
    }
    public String getProcessName() {
        return processName;
    }
 
    public void setProcessName(String processName) {
        this.processName = processName;
    }
 
    public FlowInstance() {
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getExecutionid() {
        return executionid;
    }
 
    public void setExecutionid(String executionid) {
        this.executionid = executionid;
    }
 
    public String getApplicant() {
        return applicant;
    }
 
    public void setApplicant(String applicant) {
        this.applicant = applicant;
    }
 
    public String getCreator() {
        return creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator;
    }
 
    public String getTemplatePuid() {
        return templatePuid;
    }
 
    public void setTemplatePuid(String templatePuid) {
        this.templatePuid = templatePuid;
    }
 
    public String getTemplateName() {
        return templateName;
    }
 
    public void setTemplateName(String templateName) {
        this.templateName = templateName;
    }
 
    public String getClsfOid() {
        return clsfOid;
    }
 
    public void setClsfOid(String clsfOid) {
        this.clsfOid = clsfOid;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public String getProcessType() {
        return processType;
    }
 
    public void setProcessType(String processType) {
        this.processType = processType;
    }
    
}