ProductAttributeHistory.java
package com.mycim.valueobject.prp;
import java.io.Serializable;
import java.sql.Timestamp;
public class ProductAttributeHistory implements Serializable {
private static final long serialVersionUID = 1L;
private Long transRrn;
private String transId;
private Integer transSequence;
private Timestamp transTimestamp;
private String transPerformedBy;
private Long productRrn;
private String productId;
private Integer productVersion;
private Long processRrn;
private String processId;
private Integer processVersion;
private Long routeRrn;
private String routeId;
private Integer routeVersion;
private String routeSeq;
private Long operationRrn;
private String operationId;
private String operationSeq;
private String flowSeq;
private Long attributeNameRrn;
private String attributeName;
private Long attributeValueRrn;
private String attributeValue;
private String status;
private Timestamp effectiveTime;
private Timestamp terminatedTime;
private String createdUser;
private Timestamp createdTime;
private String updatedUser;
private Timestamp updatedTime;
public Long getTransRrn() {
return transRrn;
}
public void setTransRrn(Long transRrn) {
this.transRrn = transRrn;
}
public String getTransId() {
return transId;
}
public void setTransId(String transId) {
this.transId = transId;
}
public Integer getTransSequence() {
return transSequence;
}
public void setTransSequence(Integer transSequence) {
this.transSequence = transSequence;
}
public Timestamp getTransTimestamp() {
return transTimestamp;
}
public void setTransTimestamp(Timestamp transTimestamp) {
this.transTimestamp = transTimestamp;
}
public String getTransPerformedBy() {
return transPerformedBy;
}
public void setTransPerformedBy(String transPerformedBy) {
this.transPerformedBy = transPerformedBy;
}
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 Integer getProductVersion() {
return productVersion;
}
public void setProductVersion(Integer productVersion) {
this.productVersion = productVersion;
}
public Long getProcessRrn() {
return processRrn;
}
public void setProcessRrn(Long processRrn) {
this.processRrn = processRrn;
}
public String getProcessId() {
return processId;
}
public void setProcessId(String processId) {
this.processId = processId;
}
public Integer getProcessVersion() {
return processVersion;
}
public void setProcessVersion(Integer processVersion) {
this.processVersion = processVersion;
}
public Long getRouteRrn() {
return routeRrn;
}
public void setRouteRrn(Long routeRrn) {
this.routeRrn = routeRrn;
}
public String getRouteId() {
return routeId;
}
public void setRouteId(String routeId) {
this.routeId = routeId;
}
public Integer getRouteVersion() {
return routeVersion;
}
public void setRouteVersion(Integer routeVersion) {
this.routeVersion = routeVersion;
}
public String getRouteSeq() {
return routeSeq;
}
public void setRouteSeq(String routeSeq) {
this.routeSeq = routeSeq;
}
public Long getOperationRrn() {
return operationRrn;
}
public void setOperationRrn(Long operationRrn) {
this.operationRrn = operationRrn;
}
public String getOperationId() {
return operationId;
}
public void setOperationId(String operationId) {
this.operationId = operationId;
}
public String getOperationSeq() {
return operationSeq;
}
public void setOperationSeq(String operationSeq) {
this.operationSeq = operationSeq;
}
public String getFlowSeq() {
return flowSeq;
}
public void setFlowSeq(String flowSeq) {
this.flowSeq = flowSeq;
}
public Long getAttributeNameRrn() {
return attributeNameRrn;
}
public void setAttributeNameRrn(Long attributeNameRrn) {
this.attributeNameRrn = attributeNameRrn;
}
public String getAttributeName() {
return attributeName;
}
public void setAttributeName(String attributeName) {
this.attributeName = attributeName;
}
public Long getAttributeValueRrn() {
return attributeValueRrn;
}
public void setAttributeValueRrn(Long attributeValueRrn) {
this.attributeValueRrn = attributeValueRrn;
}
public String getAttributeValue() {
return attributeValue;
}
public void setAttributeValue(String attributeValue) {
this.attributeValue = attributeValue;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Timestamp getEffectiveTime() {
return effectiveTime;
}
public void setEffectiveTime(Timestamp effectiveTime) {
this.effectiveTime = effectiveTime;
}
public Timestamp getTerminatedTime() {
return terminatedTime;
}
public void setTerminatedTime(Timestamp terminatedTime) {
this.terminatedTime = terminatedTime;
}
public String getCreatedUser() {
return createdUser;
}
public void setCreatedUser(String createdUser) {
this.createdUser = createdUser;
}
public Timestamp getCreatedTime() {
return createdTime;
}
public void setCreatedTime(Timestamp createdTime) {
this.createdTime = createdTime;
}
public String getUpdatedUser() {
return updatedUser;
}
public void setUpdatedUser(String updatedUser) {
this.updatedUser = updatedUser;
}
public Timestamp getUpdatedTime() {
return updatedTime;
}
public void setUpdatedTime(Timestamp updatedTime) {
this.updatedTime = updatedTime;
}
}