ProcessReworkDto.java
package com.mycim.valueobject.prp;
public class ProcessReworkDto {
private Long contextRrn;
/**
* ContextKey2
*/
private Long processRrn;
/**
* ContextKey8
*/
private Integer processVersion;
/**
* ContextKey3
*/
private Long routeRrn;
/**
* ContextKey4
*/
private Long operationRrn;
/**
* ResultValue1
*/
private Long reworkRouteRrn;
/**
* ResultValue5
*/
private Integer reworkRouteVersion;
/**
* ResultValue2
*/
private Long returnRouteRrn;
/**
* ResultValue3
*/
private Long returnOperationRrn;
/**
* ResultValue4
*/
private Integer maxReworkTimes;
/**
* @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 reworkRouteRrn
*/
public Long getReworkRouteRrn() {
return reworkRouteRrn;
}
/**
* @param reworkRouteRrn the reworkRouteRrn to set
*/
public void setReworkRouteRrn(Long reworkRouteRrn) {
this.reworkRouteRrn = reworkRouteRrn;
}
/**
* @return the reworkRouteVersion
*/
public Integer getReworkRouteVersion() {
return reworkRouteVersion;
}
/**
* @param reworkRouteVersion the reworkRouteVersion to set
*/
public void setReworkRouteVersion(Integer reworkRouteVersion) {
this.reworkRouteVersion = reworkRouteVersion;
}
/**
* @return the returnRouteRrn
*/
public Long getReturnRouteRrn() {
return returnRouteRrn;
}
/**
* @param returnRouteRrn the returnRouteRrn to set
*/
public void setReturnRouteRrn(Long returnRouteRrn) {
this.returnRouteRrn = returnRouteRrn;
}
/**
* @return the returnOperationRrn
*/
public Long getReturnOperationRrn() {
return returnOperationRrn;
}
/**
* @param returnOperationRrn the returnOperationRrn to set
*/
public void setReturnOperationRrn(Long returnOperationRrn) {
this.returnOperationRrn = returnOperationRrn;
}
/**
* @return the maxReworkTimes
*/
public Integer getMaxReworkTimes() {
return maxReworkTimes;
}
/**
* @param maxReworkTimes the maxReworkTimes to set
*/
public void setMaxReworkTimes(Integer maxReworkTimes) {
this.maxReworkTimes = maxReworkTimes;
}
}