BatchLotStore.java
package com.mycim.valueobject.wip;
import java.io.Serializable;
public class BatchLotStore implements Serializable {
private String batchId;
private String monitorLotId;
private Long monitorLotRrn;
private Integer lotSeq;
private String lotId;
private Long lotRrn;
private Long lotStepSequence;
private String eqptId;
private Long eqptRrn;
private String recipeId;
private Long recipeRrn;
private Integer lotQty1;
public String getBatchId() {
return batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
}
public String getMonitorLotId() {
return monitorLotId;
}
public void setMonitorLotId(String monitorLotId) {
this.monitorLotId = monitorLotId;
}
public Long getMonitorLotRrn() {
return monitorLotRrn;
}
public void setMonitorLotRrn(Long monitorLotRrn) {
this.monitorLotRrn = monitorLotRrn;
}
public Integer getLotSeq() {
return lotSeq;
}
public void setLotSeq(Integer lotSeq) {
this.lotSeq = lotSeq;
}
public String getLotId() {
return lotId;
}
public void setLotId(String lotId) {
this.lotId = lotId;
}
public Long getLotRrn() {
return lotRrn;
}
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
public Long getLotStepSequence() {
return lotStepSequence;
}
public void setLotStepSequence(Long lotStepSequence) {
this.lotStepSequence = lotStepSequence;
}
public String getEqptId() {
return eqptId;
}
public void setEqptId(String eqptId) {
this.eqptId = eqptId;
}
public Long getEqptRrn() {
return eqptRrn;
}
public void setEqptRrn(Long eqptRrn) {
this.eqptRrn = eqptRrn;
}
public String getRecipeId() {
return recipeId;
}
public void setRecipeId(String recipeId) {
this.recipeId = recipeId;
}
public Long getRecipeRrn() {
return recipeRrn;
}
public void setRecipeRrn(Long recipeRrn) {
this.recipeRrn = recipeRrn;
}
public Integer getLotQty1() {
return lotQty1;
}
public void setLotQty1(Integer lotQty1) {
this.lotQty1 = lotQty1;
}
}