BSMESShip.java
package com.mycim.valueobject.erp;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
public class BSMESShip implements Serializable {
private Long transRrn;
private String destinationId;
private String fabName;
private String lotListNo;
private Collection<BSMESShipLot> lotlist = new ArrayList<BSMESShipLot>();
private String createUser;
private String result;
private Long lotRrn;
private String errorDesc;
public Long getTransRrn() {
return transRrn;
}
public void setTransRrn(Long transRrn) {
this.transRrn = transRrn;
}
public String getDestinationId() {
return destinationId;
}
public void setDestinationId(String destinationId) {
this.destinationId = destinationId;
}
public String getFabName() {
return fabName;
}
public void setFabName(String fabName) {
this.fabName = fabName;
}
public String getLotListNo() {
return lotListNo;
}
public void setLotListNo(String lotListNo) {
this.lotListNo = lotListNo;
}
public Collection<BSMESShipLot> getLotlist() {
return lotlist;
}
public void setLotlist(Collection<BSMESShipLot> lotlist) {
this.lotlist = lotlist;
}
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
public String getErrorDesc() {
return errorDesc;
}
public void setErrorDesc(String errorDesc) {
this.errorDesc = errorDesc;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public Long getLotRrn() {
return lotRrn;
}
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
}