EqpMonitorEqpProdRelation.java
package com.mycim.valueobject.wip;
import java.io.Serializable;
import java.util.Date;
public class EqpMonitorEqpProdRelation implements Serializable {
private Long entityRrn;
private String entityId;
private Long productRrn;
private String productId;
private String productDesc;
private Integer sequenceNumber;
private String attributeData1;
private String attributeData2;
private String attributeData3;
private String attributeData4;
private String attributeData5;
private Date createdTimestamp;
private String createdUser;
public Long getEntityRrn() {
return entityRrn;
}
public void setEntityRrn(Long entityRrn) {
this.entityRrn = entityRrn;
}
public Integer getSequenceNumber() {
return sequenceNumber;
}
public void setSequenceNumber(Integer sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
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 Date getCreatedTimestamp() {
return createdTimestamp;
}
public void setCreatedTimestamp(Date createdTimestamp) {
this.createdTimestamp = createdTimestamp;
}
public String getCreatedUser() {
return createdUser;
}
public void setCreatedUser(String createdUser) {
this.createdUser = createdUser;
}
public Long getProductRrn() {
return productRrn;
}
public void setProductRrn(Long productRrn) {
this.productRrn = productRrn;
}
public String getProductId() {
return productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
public String getEntityId() {
return entityId;
}
public void setEntityId(String entityId) {
this.entityId = entityId;
}
public String getProductDesc() {
return productDesc;
}
public void setProductDesc(String productDesc) {
this.productDesc = productDesc;
}
}