PlanLotAllocation.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 com.mycim.valueobject.bas.NamedObject;
import java.sql.Timestamp;
public class PlanLotAllocation extends NamedObject {
// --------------------------------------------------------- Instance Variables
private Long planLotRrn;
private String planLotId;
private Integer sequenceNumber;
private Long customerRrn;
private String customerId;
private String customerOrder;
private Long customerOrderRrn;
private Timestamp originalDueDate;
private String originalDate;
private Double qty1;
private Integer int_qty1;
private Double qty2;
private Double createdQty1;
private Double createdQty2;
private Double scrapedQty1;
private Double scrapedQty2;
private String comments;
private String customerComments;
// --------------------------------------------------------- Properties
public Long getPlanLotRrn() {
return this.planLotRrn;
}
public void setPlanLotRrn(Long planLotRrn) {
this.planLotRrn = planLotRrn;
}
public String getPlanLotId() {
return this.planLotId;
}
public void setPlanLotId(String planLotId) {
this.planLotId = planLotId;
}
public Integer getSequenceNumber() {
return this.sequenceNumber;
}
public void setSequenceNumber(Integer sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public Long getCustomerRrn() {
return this.customerRrn;
}
public void setCustomerRrn(Long customerRrn) {
this.customerRrn = customerRrn;
}
public String getCustomerId() {
return this.customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public String getCustomerOrder() {
return this.customerOrder;
}
public void setCustomerOrder(String customerOrder) {
this.customerOrder = customerOrder;
}
public Long getCustomerOrderRrn() {
return this.customerOrderRrn;
}
public void setCustomerOrderRrn(Long customerOrderRrn) {
this.customerOrderRrn = customerOrderRrn;
}
public Timestamp getOriginalDueDate() {
return this.originalDueDate;
}
public void setOriginalDueDate(Timestamp originalDueDate) {
this.originalDueDate = originalDueDate;
}
public String getOriginalDate() {
return this.originalDate;
}
public void setOriginalDate(String originalDate) {
this.originalDate = originalDate;
}
public Double getQty1() {
return this.qty1;
}
public void setQty1(Double qty1) {
this.qty1 = qty1;
if (qty1 != null) {
this.int_qty1 = new Integer(qty1.intValue());
}
}
public Integer getInt_qty1() {
return this.int_qty1;
}
public void setInt_qty1(Integer int_qty1) {
this.int_qty1 = int_qty1;
}
public Double getQty2() {
return this.qty2;
}
public void setQty2(Double qty2) {
this.qty2 = qty2;
}
public Double getCreatedQty1() {
return this.createdQty1;
}
public void setCreatedQty1(Double createdQty1) {
this.createdQty1 = createdQty1;
}
public Double getCreatedQty2() {
return this.createdQty2;
}
public void setCreatedQty2(Double createdQty2) {
this.createdQty2 = createdQty2;
}
public Double getScrapedQty1() {
return this.scrapedQty1;
}
public void setScrapedQty1(Double scrapedQty1) {
this.scrapedQty1 = scrapedQty1;
}
public Double getScrapedQty2() {
return this.scrapedQty2;
}
public void setScrapedQty2(Double scrapedQty2) {
this.scrapedQty2 = scrapedQty2;
}
public String getComments() {
return this.comments;
}
public void setComments(String comments) {
this.comments = comments;
}
public String getCustomerComments() {
return this.customerComments;
}
public void setCustomerComments(String customerComments) {
this.customerComments = customerComments;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/