PlanLot.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.util.ArrayList;
import java.util.Collection;
public class PlanLot extends GenericLot {
// --------------------------------------------------------- Instance Variables
private Long defaultProcessRrn;
private String defaultProcessID;
private String date;
private Double allocatedQty1;
private Double allocatedQty2;
private Double createdLotQty1;
private Double createdLotQty2;
private Double scrapedQty1;
private Double scrapedQty2;
private Collection allocations = new ArrayList();
// --------------------------------------------------------- Constructors
public PlanLot() {
super();
}
public PlanLot(Long lotRrn) {
super(lotRrn);
}
public PlanLot(Long facilityRrn, String lotId) {
super(facilityRrn, lotId);
}
// --------------------------------------------------------- Properties
public String getDefaultProcessID() {
return this.defaultProcessID;
}
public void setDefaultProcessID(String defaultProcessID) {
this.defaultProcessID = defaultProcessID;
}
public Long getDefaultProcessRrn() {
return this.defaultProcessRrn;
}
public void setDefaultProcessRrn(Long defaultProcessRrn) {
this.defaultProcessRrn = defaultProcessRrn;
}
public Double getAllocatedQty1() {
return this.allocatedQty1;
}
public void setAllocatedQty1(Double allocatedQty1) {
this.allocatedQty1 = allocatedQty1;
}
public Double getAllocatedQty2() {
return this.allocatedQty2;
}
public void setAllocatedQty2(Double allocatedQty2) {
this.allocatedQty2 = allocatedQty2;
}
public Double getCreatedLotQty1() {
return this.createdLotQty1;
}
public void setCreatedLotQty1(Double createdLotQty1) {
this.createdLotQty1 = createdLotQty1;
}
public Double getCreatedLotQty2() {
return this.createdLotQty2;
}
public void setCreatedLotQty2(Double createdLotQty2) {
this.createdLotQty2 = createdLotQty2;
}
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 Collection getAllocations() {
return this.allocations;
}
public void setAllocations(Collection allocations) {
this.allocations = allocations;
}
public String getDate() {
return this.date;
}
public void setDate(String date) {
this.date = date;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/