LotExt.java

/*
 *        @ Copyright 2001 FA Software;
 *        All right reserved. No part of this program may be reproduced or
 *        transmitted in any form or by any means, electronic or
 *        mechanical, including photocopying, recording, or by any
 *        information storage or retrieval system without written
 *        permission from FA Software, except for inclusion of brief
 *        quotations in a review.
 */
package com.mycim.valueobject.wip;

import java.io.Serializable;
import java.util.Date;

public class LotExt implements Serializable, Cloneable {

    private long lotRrn;

    private String tempRecipeString;

    private String attributeData1;

    private String attributeData2;

    private String attributeData3;

    private String attributeData4;

    private String attributeData5;

    private String wiferId;

    private String wiferType;

    private String flowLevel;

    private String customerId;

    private String customerLotId;

    private String customerWaferId;

    private Date waferStartTime;

    private String outerOrderNo;

    private String innerOrderNo;

    private String shippingCode;

    private String isOutSource;

    private String isRecreateLot;

    private String projectCategory;

    private String outOrderType;

    public long getLotRrn() {
        return lotRrn;
    }

    public void setLotRrn(long lotRrn) {
        this.lotRrn = lotRrn;
    }

    public String getTempRecipeString() {
        return tempRecipeString;
    }

    public void setTempRecipeString(String tempRecipeString) {
        this.tempRecipeString = tempRecipeString;
    }

    public String getAttributeData1() {
        return attributeData1;
    }

    public void setAttributeData1(String attributeData1) {
        this.attributeData1 = attributeData1;
    }

    public String getAttributeData2() {
        return attributeData2;
    }

    public void setAttributeData2(String attributeData2) {
        this.attributeData2 = attributeData2;
    }

    public String getAttributeData3() {
        return attributeData3;
    }

    public void setAttributeData3(String attributeData3) {
        this.attributeData3 = attributeData3;
    }

    public String getAttributeData4() {
        return attributeData4;
    }

    public void setAttributeData4(String attributeData4) {
        this.attributeData4 = attributeData4;
    }

    public String getAttributeData5() {
        return attributeData5;
    }

    public void setAttributeData5(String attributeData5) {
        this.attributeData5 = attributeData5;
    }

    public String getWiferId() {
        return wiferId;
    }

    public void setWiferId(String wiferId) {
        this.wiferId = wiferId;
    }

    public String getWiferType() {
        return wiferType;
    }

    public void setWiferType(String wiferType) {
        this.wiferType = wiferType;
    }

    public String getFlowLevel() {
        return flowLevel;
    }

    public void setFlowLevel(String flowLevel) {
        this.flowLevel = flowLevel;
    }

    public String getCustomerId() {
        return customerId;
    }

    public void setCustomerId(String customerId) {
        this.customerId = customerId;
    }

    public String getCustomerLotId() {
        return customerLotId;
    }

    public void setCustomerLotId(String customerLotId) {
        this.customerLotId = customerLotId;
    }

    public String getCustomerWaferId() {
        return customerWaferId;
    }

    public void setCustomerWaferId(String customerWaferId) {
        this.customerWaferId = customerWaferId;
    }

    public Date getWaferStartTime() {
        return waferStartTime;
    }

    public void setWaferStartTime(Date waferStartTime) {
        this.waferStartTime = waferStartTime;
    }

    public String getOuterOrderNo() {
        return outerOrderNo;
    }

    public void setOuterOrderNo(String outerOrderNo) {
        this.outerOrderNo = outerOrderNo;
    }

    public String getInnerOrderNo() {
        return innerOrderNo;
    }

    public void setInnerOrderNo(String innerOrderNo) {
        this.innerOrderNo = innerOrderNo;
    }

    public String getShippingCode() {
        return shippingCode;
    }

    public void setShippingCode(String shippingCode) {
        this.shippingCode = shippingCode;
    }

    public String getIsOutSource() {
        return isOutSource;
    }

    public void setIsOutSource(String isOutSource) {
        this.isOutSource = isOutSource;
    }

    public String getIsRecreateLot() {
        return isRecreateLot;
    }

    public void setIsRecreateLot(String isRecreateLot) {
        this.isRecreateLot = isRecreateLot;
    }

    public String getProjectCategory() {
        return projectCategory;
    }

    public void setProjectCategory(String projectCategory) {
        this.projectCategory = projectCategory;
    }

    public String getOutOrderType() {
        return outOrderType;
    }

    public void setOutOrderType(String outOrderType) {
        this.outOrderType = outOrderType;
    }

}