LotSpecialInfo.java

package com.mycim.valueobject.wip;

import java.io.Serializable;

/**
 * @author andy
 */
public class LotSpecialInfo implements Serializable {

    public static final String WFL_POSITION_START = "START";

    public static final String WFL_POSITION_PRE = "PRE";

    public static final String WFL_POSITION_POST = "POST";

    public static final String WFL_POSITION_END = "END";

    private static final long serialVersionUID = 8076827844625293653L;

    protected String transId;

    protected Long createdUserRrn;

    protected String createdUserId;

    protected Long lastUpdateUserRrn;

    protected String lastUpdateUserId;

    private long facilityRrn;

    private String lotId;

    private long lotRrn;

    private long productRrn;

    private long processRrn;

    private int processVersion;

    private long routeRrn;

    private int routeVersion;

    private String routeSeq;

    private long sourceStepRrn;

    private long sourcePrevStepRrn;

    private long sourceNextStepRrn;

    private long sourceWflRrn;

    private String sourceWflId;

    private String sourceWflSeq;

    private String wflType;

    private String sourceWflLinkId;

    private String targetWflPosition;

    private long targetWflRrn;

    private String targetWflId;

    private String targetWflSeq;

    private long targetStepRrn;

    private String targetWflStageId;

    private String targetWflLayerId;

    private String targetWflLinkId;

    private String targetRecipeId;

    private long targetRecipeRrn;

    private String targetReticleIds;

    private String targetReticleRrns;

    private String targetMvInParameterSetIds;

    private String targetMvInParameterSetRrns;

    private String targetMvOutParameterSetIds;

    private String targetMvOutParameterSetRrns;

    private String targetEquipmentRrns;

    private String targetEquipmentIds;

    private boolean targetCheckEquipConstrain;

    private String attributeData1;

    private String attributeData2;

    private String attributeData3;

    private String attributeData4;

    private String attributeData5;

    private String comments;

    private String sourcePrevStepPath;

    private String targetMvinInstruction;

    private String targetMvotInstruction;

    private boolean targetVerifyMvinInstruction;

    private boolean targetVerifyMvotInstruction;

    /**
     * @return the facilityRrn
     */
    public long getFacilityRrn() {
        return facilityRrn;
    }

    /**
     * @param facilityRrn the facilityRrn to set
     */
    public void setFacilityRrn(long facilityRrn) {
        this.facilityRrn = facilityRrn;
    }

    /**
     * @return the transId
     */
    public String getTransId() {
        return transId;
    }

    /**
     * @param transId the transId to set
     */
    public void setTransId(String transId) {
        this.transId = transId;
    }

    /**
     * @return the createdUserRrn
     */
    public Long getCreatedUserRrn() {
        return createdUserRrn;
    }

    /**
     * @param createdUserRrn the createdUserRrn to set
     */
    public void setCreatedUserRrn(Long createdUserRrn) {
        this.createdUserRrn = createdUserRrn;
    }

    /**
     * @return the createdUserId
     */
    public String getCreatedUserId() {
        return createdUserId;
    }

    /**
     * @param createdUserId the createdUserId to set
     */
    public void setCreatedUserId(String createdUserId) {
        this.createdUserId = createdUserId;
    }

    /**
     * @return the lastUpdateUserRrn
     */
    public Long getLastUpdateUserRrn() {
        return lastUpdateUserRrn;
    }

    /**
     * @param lastUpdateUserRrn the lastUpdateUserRrn to set
     */
    public void setLastUpdateUserRrn(Long lastUpdateUserRrn) {
        this.lastUpdateUserRrn = lastUpdateUserRrn;
    }

    /**
     * @return the lastUpdateUserId
     */
    public String getLastUpdateUserId() {
        return lastUpdateUserId;
    }

    /**
     * @param lastUpdateUserId the lastUpdateUserId to set
     */
    public void setLastUpdateUserId(String lastUpdateUserId) {
        this.lastUpdateUserId = lastUpdateUserId;
    }

    /**
     * @return the lotId
     */
    public String getLotId() {
        return lotId;
    }

    /**
     * @param lotId the lotId to set
     */
    public void setLotId(String lotId) {
        this.lotId = lotId;
    }

    /**
     * @return the lotRrn
     */
    public long getLotRrn() {
        return lotRrn;
    }

    /**
     * @param lotRrn the lotRrn to set
     */
    public void setLotRrn(long lotRrn) {
        this.lotRrn = lotRrn;
    }

    /**
     * @return the productRrn
     */
    public long getProductRrn() {
        return productRrn;
    }

    /**
     * @param productRrn the productRrn to set
     */
    public void setProductRrn(long productRrn) {
        this.productRrn = productRrn;
    }

    /**
     * @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 int getProcessVersion() {
        return processVersion;
    }

    /**
     * @param processVersion the processVersion to set
     */
    public void setProcessVersion(int 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 routeVersion
     */
    public int getRouteVersion() {
        return routeVersion;
    }

    /**
     * @param routeVersion the routeVersion to set
     */
    public void setRouteVersion(int routeVersion) {
        this.routeVersion = routeVersion;
    }

    /**
     * @return the routeSeq
     */
    public String getRouteSeq() {
        return routeSeq;
    }

    /**
     * @param routeSeq the routeSeq to set
     */
    public void setRouteSeq(String routeSeq) {
        this.routeSeq = routeSeq;
    }

    /**
     * @return the sourceStepRrn
     */
    public long getSourceStepRrn() {
        return sourceStepRrn;
    }

    /**
     * @param sourceStepRrn the sourceStepRrn to set
     */
    public void setSourceStepRrn(long sourceStepRrn) {
        this.sourceStepRrn = sourceStepRrn;
    }

    /**
     * @return the sourcePrevStepRrn
     */
    public long getSourcePrevStepRrn() {
        return sourcePrevStepRrn;
    }

    /**
     * @param sourcePrevStepRrn the sourcePrevStepRrn to set
     */
    public void setSourcePrevStepRrn(long sourcePrevStepRrn) {
        this.sourcePrevStepRrn = sourcePrevStepRrn;
    }

    /**
     * @return the sourceNextStepRrn
     */
    public long getSourceNextStepRrn() {
        return sourceNextStepRrn;
    }

    /**
     * @param sourceNextStepRrn the sourceNextStepRrn to set
     */
    public void setSourceNextStepRrn(long sourceNextStepRrn) {
        this.sourceNextStepRrn = sourceNextStepRrn;
    }

    /**
     * @return the sourceWflRrn
     */
    public long getSourceWflRrn() {
        return sourceWflRrn;
    }

    /**
     * @param sourceWflRrn the sourceWflRrn to set
     */
    public void setSourceWflRrn(long sourceWflRrn) {
        this.sourceWflRrn = sourceWflRrn;
    }

    /**
     * @return the sourceWflId
     */
    public String getSourceWflId() {
        return sourceWflId;
    }

    /**
     * @param sourceWflId the sourceWflId to set
     */
    public void setSourceWflId(String sourceWflId) {
        this.sourceWflId = sourceWflId;
    }

    /**
     * @return the sourceWflSeq
     */
    public String getSourceWflSeq() {
        return sourceWflSeq;
    }

    /**
     * @param sourceWflSeq the sourceWflSeq to set
     */
    public void setSourceWflSeq(String sourceWflSeq) {
        this.sourceWflSeq = sourceWflSeq;
    }

    /**
     * @return the sourceWflLinkId
     */
    public String getSourceWflLinkId() {
        return sourceWflLinkId;
    }

    /**
     * @param sourceWflLinkId the sourceWflLinkId to set
     */
    public void setSourceWflLinkId(String sourceWflLinkId) {
        this.sourceWflLinkId = sourceWflLinkId;
    }

    /**
     * @return the wflType
     */
    public String getWflType() {
        return wflType;
    }

    /**
     * @param wflType the wflType to set
     */
    public void setWflType(String wflType) {
        this.wflType = wflType;
    }

    /**
     * @return the targetWflPosition
     */
    public String getTargetWflPosition() {
        return targetWflPosition;
    }

    /**
     * @param targetWflPosition the targetWflPosition to set
     */
    public void setTargetWflPosition(String targetWflPosition) {
        this.targetWflPosition = targetWflPosition;
    }

    /**
     * @return the targetWflRrn
     */
    public long getTargetWflRrn() {
        return targetWflRrn;
    }

    /**
     * @param targetWflRrn the targetWflRrn to set
     */
    public void setTargetWflRrn(long targetWflRrn) {
        this.targetWflRrn = targetWflRrn;
    }

    /**
     * @return the targetWflId
     */
    public String getTargetWflId() {
        return targetWflId;
    }

    /**
     * @param targetWflId the targetWflId to set
     */
    public void setTargetWflId(String targetWflId) {
        this.targetWflId = targetWflId;
    }

    /**
     * @return the targetWflSeq
     */
    public String getTargetWflSeq() {
        return targetWflSeq;
    }

    /**
     * @param targetWflSeq the targetWflSeq to set
     */
    public void setTargetWflSeq(String targetWflSeq) {
        this.targetWflSeq = targetWflSeq;
    }

    /**
     * @return the targetStepRrn
     */
    public long getTargetStepRrn() {
        return targetStepRrn;
    }

    /**
     * @param targetStepRrn the targetStepRrn to set
     */
    public void setTargetStepRrn(long targetStepRrn) {
        this.targetStepRrn = targetStepRrn;
    }

    /**
     * @return the targetWflStageId
     */
    public String getTargetWflStageId() {
        return targetWflStageId;
    }

    /**
     * @param targetWflStageId the targetWflStageId to set
     */
    public void setTargetWflStageId(String targetWflStageId) {
        this.targetWflStageId = targetWflStageId;
    }

    /**
     * @return the targetWflLayerId
     */
    public String getTargetWflLayerId() {
        return targetWflLayerId;
    }

    /**
     * @param targetWflLayerId the targetWflLayerId to set
     */
    public void setTargetWflLayerId(String targetWflLayerId) {
        this.targetWflLayerId = targetWflLayerId;
    }

    /**
     * @return the targetWflLinkId
     */
    public String getTargetWflLinkId() {
        return targetWflLinkId;
    }

    /**
     * @param targetWflLinkId the targetWflLinkId to set
     */
    public void setTargetWflLinkId(String targetWflLinkId) {
        this.targetWflLinkId = targetWflLinkId;
    }

    /**
     * @return the targetRecipeId
     */
    public String getTargetRecipeId() {
        return targetRecipeId;
    }

    /**
     * @param targetRecipeId the targetRecipeId to set
     */
    public void setTargetRecipeId(String targetRecipeId) {
        this.targetRecipeId = targetRecipeId;
    }

    /**
     * @return the targetRecipeRrn
     */
    public long getTargetRecipeRrn() {
        return targetRecipeRrn;
    }

    /**
     * @param targetRecipeRrn the targetRecipeRrn to set
     */
    public void setTargetRecipeRrn(long targetRecipeRrn) {
        this.targetRecipeRrn = targetRecipeRrn;
    }

    /**
     * @return the targetReticleIds
     */
    public String getTargetReticleIds() {
        return targetReticleIds;
    }

    /**
     * @param targetReticleIds the targetReticleIds to set
     */
    public void setTargetReticleIds(String targetReticleIds) {
        this.targetReticleIds = targetReticleIds;
    }

    /**
     * @return the targetReticleRrns
     */
    public String getTargetReticleRrns() {
        return targetReticleRrns;
    }

    /**
     * @param targetReticleRrns the targetReticleRrns to set
     */
    public void setTargetReticleRrns(String targetReticleRrns) {
        this.targetReticleRrns = targetReticleRrns;
    }

    /**
     * @return the targetMvInParameterSetIds
     */
    public String getTargetMvInParameterSetIds() {
        return targetMvInParameterSetIds;
    }

    /**
     * @param targetMvInParameterSetIds the targetMvInParameterSetIds to set
     */
    public void setTargetMvInParameterSetIds(String targetMvInParameterSetIds) {
        this.targetMvInParameterSetIds = targetMvInParameterSetIds;
    }

    /**
     * @return the targetMvInParameterSetRrns
     */
    public String getTargetMvInParameterSetRrns() {
        return targetMvInParameterSetRrns;
    }

    /**
     * @param targetMvInParameterSetRrns the targetMvInParameterSetRrns to set
     */
    public void setTargetMvInParameterSetRrns(String targetMvInParameterSetRrns) {
        this.targetMvInParameterSetRrns = targetMvInParameterSetRrns;
    }

    /**
     * @return the targetMvOutParameterSetIds
     */
    public String getTargetMvOutParameterSetIds() {
        return targetMvOutParameterSetIds;
    }

    /**
     * @param targetMvOutParameterSetIds the targetMvOutParameterSetIds to set
     */
    public void setTargetMvOutParameterSetIds(String targetMvOutParameterSetIds) {
        this.targetMvOutParameterSetIds = targetMvOutParameterSetIds;
    }

    /**
     * @return the targetMvOutParameterSetRrns
     */
    public String getTargetMvOutParameterSetRrns() {
        return targetMvOutParameterSetRrns;
    }

    /**
     * @param targetMvOutParameterSetRrns the targetMvOutParameterSetRrns to set
     */
    public void setTargetMvOutParameterSetRrns(String targetMvOutParameterSetRrns) {
        this.targetMvOutParameterSetRrns = targetMvOutParameterSetRrns;
    }

    /**
     * @return the targetEquipmentRrns
     */
    public String getTargetEquipmentRrns() {
        return targetEquipmentRrns;
    }

    /**
     * @param targetEquipmentRrns the targetEquipmentRrns to set
     */
    public void setTargetEquipmentRrns(String targetEquipmentRrns) {
        this.targetEquipmentRrns = targetEquipmentRrns;
    }

    /**
     * @return the targetCheckEquipConstrain
     */
    public boolean getTargetCheckEquipConstrain() {
        return targetCheckEquipConstrain;
    }

    /**
     * @param targetCheckEquipConstrain the targetCheckEquipConstrain to set
     */
    public void setTargetCheckEquipConstrain(boolean targetCheckEquipConstrain) {
        this.targetCheckEquipConstrain = targetCheckEquipConstrain;
    }

    /**
     * @return the targetEquipmentIds
     */
    public String getTargetEquipmentIds() {
        return targetEquipmentIds;
    }

    /**
     * @param targetEquipmentIds the targetEquipmentIds to set
     */
    public void setTargetEquipmentIds(String targetEquipmentIds) {
        this.targetEquipmentIds = targetEquipmentIds;
    }

    /**
     * @return the attributeData1
     */
    public String getAttributeData1() {
        return attributeData1;
    }

    /**
     * @param attributeData1 the attributeData1 to set
     */
    public void setAttributeData1(String attributeData1) {
        this.attributeData1 = attributeData1;
    }

    /**
     * @return the attributeData2
     */
    public String getAttributeData2() {
        return attributeData2;
    }

    /**
     * @param attributeData2 the attributeData2 to set
     */
    public void setAttributeData2(String attributeData2) {
        this.attributeData2 = attributeData2;
    }

    /**
     * @return the attributeData3
     */
    public String getAttributeData3() {
        return attributeData3;
    }

    /**
     * @param attributeData3 the attributeData3 to set
     */
    public void setAttributeData3(String attributeData3) {
        this.attributeData3 = attributeData3;
    }

    /**
     * @return the attributeData4
     */
    public String getAttributeData4() {
        return attributeData4;
    }

    /**
     * @param attributeData4 the attributeData4 to set
     */
    public void setAttributeData4(String attributeData4) {
        this.attributeData4 = attributeData4;
    }

    /**
     * @return the attributeData5
     */
    public String getAttributeData5() {
        return attributeData5;
    }

    /**
     * @param attributeData5 the attributeData5 to set
     */
    public void setAttributeData5(String attributeData5) {
        this.attributeData5 = attributeData5;
    }

    /**
     * @return the comments
     */
    public String getComments() {
        return comments;
    }

    /**
     * @param comments the comments to set
     */
    public void setComments(String comments) {
        this.comments = comments;
    }

    public String getSourcePrevStepPath() {
        return sourcePrevStepPath;
    }

    public void setSourcePrevStepPath(String sourcePrevStepPath) {
        this.sourcePrevStepPath = sourcePrevStepPath;
    }

    public String getTargetMvinInstruction() {
        return targetMvinInstruction;
    }

    public void setTargetMvinInstruction(String targetMvinInstruction) {
        this.targetMvinInstruction = targetMvinInstruction;
    }

    public String getTargetMvotInstruction() {
        return targetMvotInstruction;
    }

    public void setTargetMvotInstruction(String targetMvotInstruction) {
        this.targetMvotInstruction = targetMvotInstruction;
    }

    public boolean getTargetVerifyMvinInstruction() {
        return targetVerifyMvinInstruction;
    }

    public void setTargetVerifyMvinInstruction(boolean targetVerifyMvinInstruction) {
        this.targetVerifyMvinInstruction = targetVerifyMvinInstruction;
    }

    public boolean getTargetVerifyMvotInstruction() {
        return targetVerifyMvotInstruction;
    }

    public void setTargetVerifyMvotInstruction(boolean targetVerifyMvotInstruction) {
        this.targetVerifyMvotInstruction = targetVerifyMvotInstruction;
    }

}