UnitStepRangeHistory.java
package com.mycim.valueobject.wip;
import java.io.Serializable;
public class UnitStepRangeHistory implements Serializable {
private Long unitRrn;
private String unitType;
private Long lotRrn;
private Long startStepSequence;
private Long endStepStepSequence;
private Long sourceLotRrn;
private Long sourceStartStepSequence;
private Long sourceEndStepStepSequence;
private Boolean isBonded;
private String attributeData1;
private String attributeData2;
private String attributeData3;
private String attributeData4;
private String attributeData5;
/**
* @return the unitRrn
*/
public Long getUnitRrn() {
return unitRrn;
}
/**
* @param unitRrn the unitRrn to set
*/
public void setUnitRrn(Long unitRrn) {
this.unitRrn = unitRrn;
}
/**
* @return the unitType
*/
public String getUnitType() {
return unitType;
}
/**
* @param unitType the unitType to set
*/
public void setUnitType(String unitType) {
this.unitType = unitType;
}
/**
* @return the lotRrn
*/
public Long getLotRrn() {
return lotRrn;
}
/**
* @param lotRrn the lotRrn to set
*/
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
/**
* @return the startStepSequence
*/
public Long getStartStepSequence() {
return startStepSequence;
}
/**
* @param startStepSequence the startStepSequence to set
*/
public void setStartStepSequence(Long startStepSequence) {
this.startStepSequence = startStepSequence;
}
/**
* @return the endStepStepSequence
*/
public Long getEndStepStepSequence() {
return endStepStepSequence;
}
/**
* @param endStepStepSequence the endStepStepSequence to set
*/
public void setEndStepStepSequence(Long endStepStepSequence) {
this.endStepStepSequence = endStepStepSequence;
}
/**
* @return the sourceLotRrn
*/
public Long getSourceLotRrn() {
return sourceLotRrn;
}
/**
* @param sourceLotRrn the sourceLotRrn to set
*/
public void setSourceLotRrn(Long sourceLotRrn) {
this.sourceLotRrn = sourceLotRrn;
}
/**
* @return the sourceStartStepSequence
*/
public Long getSourceStartStepSequence() {
return sourceStartStepSequence;
}
/**
* @param sourceStartStepSequence the sourceStartStepSequence to set
*/
public void setSourceStartStepSequence(Long sourceStartStepSequence) {
this.sourceStartStepSequence = sourceStartStepSequence;
}
/**
* @return the sourceEndStepStepSequence
*/
public Long getSourceEndStepStepSequence() {
return sourceEndStepStepSequence;
}
/**
* @param sourceEndStepStepSequence the sourceEndStepStepSequence to set
*/
public void setSourceEndStepStepSequence(Long sourceEndStepStepSequence) {
this.sourceEndStepStepSequence = sourceEndStepStepSequence;
}
/**
* @return the isBonded
*/
public Boolean getIsBonded() {
return isBonded;
}
/**
* @param isBonded the isBonded to set
*/
public void setIsBonded(Boolean isBonded) {
this.isBonded = isBonded;
}
/**
* @return the attributeData1
*/
public String getAttributeData1() {
return attributeData1;
}
/**
* @param attributeData1 the attributeData1 to set
*/
public void setAttributeData1(String attributeData1) {
this.attributeData1 = attributeData1;
}
/**
* @return the attributeData2
*/
public String getAttributeData2() {
return attributeData2;
}
/**
* @param attributeData2 the attributeData2 to set
*/
public void setAttributeData2(String attributeData2) {
this.attributeData2 = attributeData2;
}
/**
* @return the attributeData3
*/
public String getAttributeData3() {
return attributeData3;
}
/**
* @param attributeData3 the attributeData3 to set
*/
public void setAttributeData3(String attributeData3) {
this.attributeData3 = attributeData3;
}
/**
* @return the attributeData4
*/
public String getAttributeData4() {
return attributeData4;
}
/**
* @param attributeData4 the attributeData4 to set
*/
public void setAttributeData4(String attributeData4) {
this.attributeData4 = attributeData4;
}
/**
* @return the attributeData5
*/
public String getAttributeData5() {
return attributeData5;
}
/**
* @param attributeData5 the attributeData5 to set
*/
public void setAttributeData5(String attributeData5) {
this.attributeData5 = attributeData5;
}
}