cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.beans;
 
/**
 * 流程记录类
 * @author chenlong
 *
 */
public class FlowDealRecord {
    /**
     * id
     */
    private String id;
    /**
     * 业务id
     */
    private String businessId;
    /**
     * 流程模板key
     */
    private Integer templateKey;
    /**
     * 操作结果
     */
    private Integer result=1;
    /**
     * 处理人id
     */
    private String dealId;
    /**
     * 处理人名称
     */
    private String dealName;
    /**
     * 备注
     */
    private String note = "";
    /**
     * 扩展字段
     */
    private String extendText = "";
    
    /**
     * 结果Key
     * 
     */
    private String resKey;
    /**
     * 结果Val
     */
    private String resVal;
    /**
     * 类型[0删除 1正常]
     */
    private Integer state=1;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getBusinessId() {
        return businessId;
    }
    public void setBusinessId(String businessId) {
        this.businessId = businessId;
    }
    public Integer getTemplateKey() {
        return templateKey;
    }
    public void setTemplateKey(Integer templateKey) {
        this.templateKey = templateKey;
    }
    public Integer getResult() {
        return result;
    }
    public void setResult(Integer result) {
        this.result = result;
    }
    public String getDealId() {
        return dealId;
    }
    public void setDealId(String dealId) {
        this.dealId = dealId;
    }
    public String getDealName() {
        return dealName;
    }
    public void setDealName(String dealName) {
        this.dealName = dealName;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public String getExtendText() {
        return extendText;
    }
    public void setExtendText(String extendText) {
        this.extendText = extendText;
    }
    public Integer getState() {
        return state;
    }
    public void setState(Integer state) {
        this.state = state;
    }
    public String getResKey() {
        return resKey;
    }
    public void setResKey(String resKey) {
        this.resKey = resKey;
    }
    public String getResVal() {
        return resVal;
    }
    public void setResVal(String resVal) {
        this.resVal = resVal;
    }
    
    
}