GenericLot.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.sql.Timestamp;

public class GenericLot implements Serializable {

    // --------------------------------------------------------- Instance Variables
    private Long lotRrn;

    private Long facilityRrn;

    private String lotId;

    private Long productRrn;

    private String productId;

    private String hotFlag;

    private Short priority;

    private String lotOwner;

    private String lotType;

    private Timestamp dueDate;

    private Double qty1;

    private Double qty2;

    private String comments;

    private String transPerformedby;

    private String transId;

    // --------------------------------------------------------- Constructors
    public GenericLot() {

    }

    public GenericLot(Long lotRrn) {
        this.lotRrn = lotRrn;
    }

    public GenericLot(Long facilityRrn, String lotId) {
        this.facilityRrn = facilityRrn;
        this.lotId = lotId;
    }

    // --------------------------------------------------------- Properties
    public Long getLotRrn() {
        return this.lotRrn;
    }

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

    public Long getFacilityRrn() {
        return this.facilityRrn;
    }

    public void setFacilityRrn(Long facilityRrn) {
        this.facilityRrn = facilityRrn;
    }

    public String getLotId() {
        return this.lotId;
    }

    public void setLotId(String lotId) {
        this.lotId = lotId;
    }

    public Long getProductRrn() {
        return this.productRrn;
    }

    public void setProductRrn(Long productRrn) {
        this.productRrn = productRrn;
    }

    public String getProductId() {
        return this.productId;
    }

    public void setProductId(String productId) {
        this.productId = productId;
    }

    public String getHotFlag() {
        return this.hotFlag;
    }

    public void setHotFlag(String hotFlag) {
        this.hotFlag = hotFlag;
    }

    public Short getPriority() {
        return this.priority;
    }

    public void setPriority(Short priority) {
        this.priority = priority;
    }

    public String getLotOwner() {
        return this.lotOwner;
    }

    public void setLotOwner(String lotOwner) {
        this.lotOwner = lotOwner;
    }

    public String getLotType() {
        return this.lotType;
    }

    public void setLotType(String lotType) {
        this.lotType = lotType;
    }

    public Timestamp getDueDate() {
        return this.dueDate;
    }

    public void setDueDate(Timestamp dueDate) {
        this.dueDate = dueDate;
    }

    public Double getQty1() {
        return this.qty1;
    }

    public void setQty1(Double qty1) {
        this.qty1 = qty1;
    }

    public Double getQty2() {
        return this.qty2;
    }

    public void setQty2(Double qty2) {
        this.qty2 = qty2;
    }

    public String getComments() {
        return this.comments;
    }

    public void setComments(String comments) {
        this.comments = comments;
    }

    public String getTransPerformedby() {
        return this.transPerformedby;
    }

    public void setTransPerformedby(String transPerformedby) {
        this.transPerformedby = transPerformedby;
    }

    public String getTransId() {
        return this.transId;
    }

    public void setTransId(String transId) {
        this.transId = transId;
    }

}

/*
 * Modification Log Log No : Name : Modified Date: Description :
 */