ProcessFlowSeqDto.java
package com.mycim.valueobject.prp;
import java.io.Serializable;
/**
* @author Qiansheng.Wang
* @since 2020-08-18
*/
public class ProcessFlowSeqDto implements Serializable {
private static final long serialVersionUID = 1975877819141552071L;
private Long contextRrn;
/**
* ContextKey2
*/
private Long processRrn;
/**
* ContextKey8
*/
private Integer processVersion;
/**
* ContextKey3
*/
private Long routeRrn;
/**
* ContextKey4
*/
private Long operationRrn;
/**
* ResultValue1
*/
private String flowSeq;
/**
* ResultValue2
*/
private String reworkFlag;
private String status;
/**
* @return the contextRrn
*/
public Long getContextRrn() {
return contextRrn;
}
/**
* @param contextRrn the contextRrn to set
*/
public void setContextRrn(Long contextRrn) {
this.contextRrn = contextRrn;
}
/**
* @return the processRrn
*/
public Long getProcessRrn() {
return processRrn;
}
/**
* @param processRrn the processRrn to set
*/
public void setProcessRrn(Long processRrn) {
this.processRrn = processRrn;
}
/**
* @return the processVersion
*/
public Integer getProcessVersion() {
return processVersion;
}
/**
* @param processVersion the processVersion to set
*/
public void setProcessVersion(Integer processVersion) {
this.processVersion = processVersion;
}
/**
* @return the routeRrn
*/
public Long getRouteRrn() {
return routeRrn;
}
/**
* @param routeRrn the routeRrn to set
*/
public void setRouteRrn(Long routeRrn) {
this.routeRrn = routeRrn;
}
/**
* @return the operationRrn
*/
public Long getOperationRrn() {
return operationRrn;
}
/**
* @param operationRrn the operationRrn to set
*/
public void setOperationRrn(Long operationRrn) {
this.operationRrn = operationRrn;
}
/**
* @return the flowSeq
*/
public String getFlowSeq() {
return flowSeq;
}
/**
* @param flowSeq the flowSeq to set
*/
public void setFlowSeq(String flowSeq) {
this.flowSeq = flowSeq;
}
public String getReworkFlag() {
return reworkFlag;
}
public void setReworkFlag(String reworkFlag) {
this.reworkFlag = reworkFlag;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}