RecipeCondition.java

// Created on 2014年9月19日
// $Id$

package com.mycim.valueobject.prp;

import com.mycim.valueobject.bas.NamedObject;

/**
 * @author mark
 */
public class RecipeCondition extends NamedObject {

    private long recipeRrn;

    private long productRrn;

    private long processRrn;

    private long routeRrn;

    private long operationRrn;

    private String puType;

    private long parameterRrn;

    private String paramSelect;

    public RecipeCondition() {

    }

    /**
     * @param recipeRrn
     * @param productRrn
     * @param processRrn
     * @param routeRrn
     * @param operationRrn
     * @param puType
     * @param parameterRrn
     * @param paramSelect
     */
    public RecipeCondition(long recipeRrn, long productRrn, long processRrn, long routeRrn, long operationRrn,
                           String puType, long parameterRrn, String paramSelect) {
        super();
        this.recipeRrn = recipeRrn;
        this.productRrn = productRrn;
        this.processRrn = processRrn;
        this.routeRrn = routeRrn;
        this.operationRrn = operationRrn;
        this.puType = puType;
        this.parameterRrn = parameterRrn;
        this.paramSelect = paramSelect;
    }

    /**
     * @return the recipeRrn
     */
    public long getRecipeRrn() {
        return recipeRrn;
    }

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

    /**
     * @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 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 puType
     */
    public String getPuType() {
        return puType;
    }

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

    /**
     * @return the parameterRrn
     */
    public long getParameterRrn() {
        return parameterRrn;
    }

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

    /**
     * @return the paramSelect
     */
    public String getParamSelect() {
        return paramSelect;
    }

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

}