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; } }