ProcessLoopInfo.java
// Created on 2014年10月27日
// $Id$
package com.mycim.valueobject.prp;
import java.io.Serializable;
/**
* @author mark
*/
public class ProcessLoopInfo implements Serializable {
private int sequenceId;
private long processRrn;
private int processVersion;
private long routeStartRrn;
private String startFlowSeq;
private String routeStartId;
private String routeStartDesc;
private long operationStartRrn;
private String operationStartId;
private String operationStartDesc;
private long routeEndRrn;
private String endFlowSeq;
private String routeEndId;
private String routeEndDesc;
private long operationEndRrn;
private String operationEndId;
private String operationEndDesc;
private String loopCount;
private long objectRrn;
private String sumLoopCount;
private String lotId;
public String getStartFlowSeq() {
return startFlowSeq;
}
public void setStartFlowSeq(String startFlowSeq) {
this.startFlowSeq = startFlowSeq;
}
public String getEndFlowSeq() {
return endFlowSeq;
}
public void setEndFlowSeq(String endFlowSeq) {
this.endFlowSeq = endFlowSeq;
}
/**
* @return the processRrn
*/
public long getProcessRrn() {
return processRrn;
}
/**
* @param processRrn the processRrn to set
*/
public void setProcessRrn(long processRrn) {
this.processRrn = processRrn;
}
/**
* @return the routeStartRrn
*/
public long getRouteStartRrn() {
return routeStartRrn;
}
/**
* @param routeStartRrn the routeStartRrn to set
*/
public void setRouteStartRrn(long routeStartRrn) {
this.routeStartRrn = routeStartRrn;
}
/**
* @return the routeStartId
*/
public String getRouteStartId() {
return routeStartId;
}
/**
* @param routeStartId the routeStartId to set
*/
public void setRouteStartId(String routeStartId) {
this.routeStartId = routeStartId;
}
/**
* @return the routeStartDesc
*/
public String getRouteStartDesc() {
return routeStartDesc;
}
/**
* @param routeStartDesc the routeStartDesc to set
*/
public void setRouteStartDesc(String routeStartDesc) {
this.routeStartDesc = routeStartDesc;
}
/**
* @return the routeEndRrn
*/
public long getRouteEndRrn() {
return routeEndRrn;
}
/**
* @param routeEndRrn the routeEndRrn to set
*/
public void setRouteEndRrn(long routeEndRrn) {
this.routeEndRrn = routeEndRrn;
}
/**
* @return the routeEndId
*/
public String getRouteEndId() {
return routeEndId;
}
/**
* @param routeEndId the routeEndId to set
*/
public void setRouteEndId(String routeEndId) {
this.routeEndId = routeEndId;
}
/**
* @return the routeEndDesc
*/
public String getRouteEndDesc() {
return routeEndDesc;
}
/**
* @param routeEndDesc the routeEndDesc to set
*/
public void setRouteEndDesc(String routeEndDesc) {
this.routeEndDesc = routeEndDesc;
}
/**
* @return the loopCount
*/
public String getLoopCount() {
return loopCount;
}
/**
* @param loopCount the loopCount to set
*/
public void setLoopCount(String loopCount) {
this.loopCount = loopCount;
}
/**
* @return the sequenceId
*/
public int getSequenceId() {
return sequenceId;
}
/**
* @param sequenceId the sequenceId to set
*/
public void setSequenceId(int sequenceId) {
this.sequenceId = sequenceId;
}
/**
* @return the operationStartRrn
*/
public long getOperationStartRrn() {
return operationStartRrn;
}
/**
* @param operationStartRrn the operationStartRrn to set
*/
public void setOperationStartRrn(long operationStartRrn) {
this.operationStartRrn = operationStartRrn;
}
/**
* @return the operationStartId
*/
public String getOperationStartId() {
return operationStartId;
}
/**
* @param operationStartId the operationStartId to set
*/
public void setOperationStartId(String operationStartId) {
this.operationStartId = operationStartId;
}
/**
* @return the operationStartDesc
*/
public String getOperationStartDesc() {
return operationStartDesc;
}
/**
* @param operationStartDesc the operationStartDesc to set
*/
public void setOperationStartDesc(String operationStartDesc) {
this.operationStartDesc = operationStartDesc;
}
/**
* @return the operationEndRrn
*/
public long getOperationEndRrn() {
return operationEndRrn;
}
/**
* @param operationEndRrn the operationEndRrn to set
*/
public void setOperationEndRrn(long operationEndRrn) {
this.operationEndRrn = operationEndRrn;
}
/**
* @return the operationEndId
*/
public String getOperationEndId() {
return operationEndId;
}
/**
* @param operationEndId the operationEndId to set
*/
public void setOperationEndId(String operationEndId) {
this.operationEndId = operationEndId;
}
/**
* @return the operationEndDesc
*/
public String getOperationEndDesc() {
return operationEndDesc;
}
/**
* @param operationEndDesc the operationEndDesc to set
*/
public void setOperationEndDesc(String operationEndDesc) {
this.operationEndDesc = operationEndDesc;
}
public long getObjectRrn() {
return objectRrn;
}
public void setObjectRrn(long objectRrn) {
this.objectRrn = objectRrn;
}
public String getSumLoopCount() {
return sumLoopCount;
}
public void setSumLoopCount(String sumLoopCount) {
this.sumLoopCount = sumLoopCount;
}
public String getLotId() {
return lotId;
}
public void setLotId(String lotId) {
this.lotId = lotId;
}
public int getProcessVersion() {
return processVersion;
}
public void setProcessVersion(int processVersion) {
this.processVersion = processVersion;
}
}