LotProcessStepDto.java
package com.mycim.valueobject.wip.dto;
public class LotProcessStepDto {
private Long productRrn;
private Integer productVersion;
private Long processRrn;
private Integer processVersion;
private Long routeRrn;
private Integer routeVersion;
private String routeSeq;
private Long operationRrn;
private Integer operationVersion;
private String operationSeq;
public Long getProductRrn() {
return productRrn;
}
public void setProductRrn(Long productRrn) {
this.productRrn = productRrn;
}
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 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 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 Integer getOperationVersion() {
return operationVersion;
}
public void setOperationVersion(Integer operationVersion) {
this.operationVersion = operationVersion;
}
public String getOperationSeq() {
return operationSeq;
}
public void setOperationSeq(String operationSeq) {
this.operationSeq = operationSeq;
}
}