RecipeVersion.java

package com.mycim.valueobject.prp;

import com.mycim.valueobject.bas.ObjectVersion;

public class RecipeVersion extends ObjectVersion {

    public static final String CHAMBERSEPARATOR = ";";

    // --------------------------------------------------------- Instance Variables
    private String chamberTypes;

    private String ppid;

    private String recipeComments;

    private String fileCreatedTimestamp;

    private String setupId;

    private String equipmentModelId;

    private Long equipmentModelRrn;

    private Long processTimePerUnit;

    private Long processTimePerHour;

    public String getChamberTypes() {
        return chamberTypes;
    }

    public void setChamberTypes(String chamberTypes) {
        this.chamberTypes = chamberTypes;
    }

    public String getPpid() {
        return this.ppid;
    }

    public void setPpid(String ppid) {
        this.ppid = ppid;
    }

    public String getRecipeComments() {
        return this.recipeComments;
    }

    public void setRecipeComments(String recipeComments) {
        this.recipeComments = recipeComments;
    }

    public String getFileCreatedTimestamp() {
        return this.fileCreatedTimestamp;
    }

    public void setFileCreatedTimestamp(String fileCreatedTimestamp) {
        this.fileCreatedTimestamp = fileCreatedTimestamp;
    }

    public String getSetupId() {
        return this.setupId;
    }

    public void setSetupId(String setupId) {
        this.setupId = setupId;
    }

    public String getEquipmentModelId() {
        return this.equipmentModelId;
    }

    public void setEquipmentModelId(String equipmentModelId) {
        this.equipmentModelId = equipmentModelId;
    }

    public Long getEquipmentModelRrn() {
        return this.equipmentModelRrn;
    }

    public void setEquipmentModelRrn(Long equipmentModelRrn) {
        this.equipmentModelRrn = equipmentModelRrn;
    }

    // ///2003-8-7 for report
    public Long getProcessTimePerUnit() {
        return this.processTimePerUnit;
    }

    public void setProcessTimePerUnit(Long processTimePerUnit) {
        this.processTimePerUnit = processTimePerUnit;
    }

    public Long getProcessTimePerHour() {
        return this.processTimePerHour;
    }

    public void setProcessTimePerHour(Long processTimePerHour) {
        this.processTimePerHour = processTimePerHour;
    }
    // ///
}