UnitBondedHistory.java
package com.mycim.valueobject.wip;
import java.io.Serializable;
public class UnitBondedHistory implements Serializable {
private Long transRrn;
private Long transSequence;
private Long sourceLotRrn;
private Long sourceLotStepSequence;
private Long sourceUnitRrn;
private String sourceUnitType;
private Long targetLotRrn;
private Long targetLotStepSequence;
private Long targetUnitRrn;
private String targetUnitType;
private String attributeData1;
private String attributeData2;
private String attributeData3;
private String attributeData4;
private String attributeData5;
public Long getTransRrn() {
return transRrn;
}
public void setTransRrn(Long transRrn) {
this.transRrn = transRrn;
}
public Long getTransSequence() {
return transSequence;
}
public void setTransSequence(Long transSequence) {
this.transSequence = transSequence;
}
public Long getSourceLotRrn() {
return sourceLotRrn;
}
public void setSourceLotRrn(Long sourceLotRrn) {
this.sourceLotRrn = sourceLotRrn;
}
public Long getSourceUnitRrn() {
return sourceUnitRrn;
}
public void setSourceUnitRrn(Long sourceUnitRrn) {
this.sourceUnitRrn = sourceUnitRrn;
}
public String getSourceUnitType() {
return sourceUnitType;
}
public void setSourceUnitType(String sourceUnitType) {
this.sourceUnitType = sourceUnitType;
}
public Long getTargetLotRrn() {
return targetLotRrn;
}
public void setTargetLotRrn(Long targetLotRrn) {
this.targetLotRrn = targetLotRrn;
}
public Long getTargetUnitRrn() {
return targetUnitRrn;
}
public void setTargetUnitRrn(Long targetUnitRrn) {
this.targetUnitRrn = targetUnitRrn;
}
public String getTargetUnitType() {
return targetUnitType;
}
public void setTargetUnitType(String targetUnitType) {
this.targetUnitType = targetUnitType;
}
public String getAttributeData1() {
return attributeData1;
}
public void setAttributeData1(String attributeData1) {
this.attributeData1 = attributeData1;
}
public String getAttributeData2() {
return attributeData2;
}
public void setAttributeData2(String attributeData2) {
this.attributeData2 = attributeData2;
}
public String getAttributeData3() {
return attributeData3;
}
public void setAttributeData3(String attributeData3) {
this.attributeData3 = attributeData3;
}
public String getAttributeData4() {
return attributeData4;
}
public void setAttributeData4(String attributeData4) {
this.attributeData4 = attributeData4;
}
public String getAttributeData5() {
return attributeData5;
}
public void setAttributeData5(String attributeData5) {
this.attributeData5 = attributeData5;
}
public Long getSourceLotStepSequence() {
return sourceLotStepSequence;
}
public void setSourceLotStepSequence(Long sourceLotStepSequence) {
this.sourceLotStepSequence = sourceLotStepSequence;
}
public Long getTargetLotStepSequence() {
return targetLotStepSequence;
}
public void setTargetLotStepSequence(Long targetLotStepSequence) {
this.targetLotStepSequence = targetLotStepSequence;
}
}