Bin.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.util.ArrayList;
import java.util.Collection;
public class Bin extends NamedObject {
// --------------------------------------------------------- Instance Variables
private Long binRrn;
private String binId;
private Long newProductRrn;
private Long binQty;
private Collection binnings = new ArrayList();
// --------------------------------------------------------- Properties
public Long getBinRrn() {
return this.binRrn;
}
public void setBinRrn(Long binRrn) {
this.binRrn = binRrn;
}
public String getBinId() {
return this.binId;
}
public void setBinId(String binId) {
this.binId = binId;
}
public Long getNewProductRrn() {
return this.newProductRrn;
}
public void setNewProductRrn(Long newProductRrn) {
this.newProductRrn = newProductRrn;
}
public Long getBinQty() {
return this.binQty;
}
public void setBinQty(Long binQty) {
this.binQty = binQty;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/