QueryContextValueDTO.java
package com.mycim.valueobject.context.dto;
import java.io.Serializable;
/**
* @author Qiansheng.Wang
* @since 2020-07-27
*/
public class QueryContextValueDTO implements Serializable {
private static final long serialVersionUID = -4976758324569421184L;
private Long facilityRrn;
private Long operationRrn;
private Long routeRrn;
private Integer routeVersion;
private Long processRrn;
private Integer processVersion;
private Integer productVersion;
private Long productRrn;
private Long lotRrn;
/*
movein moveout
*/
private String actionPoint;
/**
* @return the facilityRrn
*/
public Long getFacilityRrn() {
return facilityRrn;
}
/**
* @param facilityRrn the facilityRrn to set
*/
public void setFacilityRrn(Long facilityRrn) {
this.facilityRrn = facilityRrn;
}
/**
* @return the operationRrn
*/
public Long getOperationRrn() {
return operationRrn;
}
/**
* @param operationRrn the operationRrn to set
*/
public void setOperationRrn(Long operationRrn) {
this.operationRrn = operationRrn;
}
/**
* @return the routeRrn
*/
public Long getRouteRrn() {
return routeRrn;
}
/**
* @param routeRrn the routeRrn to set
*/
public void setRouteRrn(Long routeRrn) {
this.routeRrn = routeRrn;
}
/**
* @return the routeVersion
*/
public Integer getRouteVersion() {
return routeVersion;
}
/**
* @param routeVersion the routeVersion to set
*/
public void setRouteVersion(Integer routeVersion) {
this.routeVersion = routeVersion;
}
/**
* @return the processRrn
*/
public Long getProcessRrn() {
return processRrn;
}
/**
* @param processRrn the processRrn to set
*/
public void setProcessRrn(Long processRrn) {
this.processRrn = processRrn;
}
/**
* @return the processVersion
*/
public Integer getProcessVersion() {
return processVersion;
}
/**
* @param processVersion the processVersion to set
*/
public void setProcessVersion(Integer processVersion) {
this.processVersion = processVersion;
}
/**
* @return the productRrn
*/
public Long getProductRrn() {
return productRrn;
}
/**
* @param productRrn the productRrn to set
*/
public void setProductRrn(Long productRrn) {
this.productRrn = productRrn;
}
/**
* @return the lotRrn
*/
public Long getLotRrn() {
return lotRrn;
}
/**
* @param lotRrn the lotRrn to set
*/
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
public String getActionPoint() {
return actionPoint;
}
public void setActionPoint(String actionPoint) {
this.actionPoint = actionPoint;
}
public Integer getProductVersion() {
return productVersion;
}
public void setProductVersion(Integer productVersion) {
this.productVersion = productVersion;
}
@Override
public String toString() {
return "QueryContextValueDTO{" + "facilityRrn=" + facilityRrn + ", operationRrn=" + operationRrn + ", " +
"routeRrn=" + routeRrn + ", routeVersion=" + routeVersion + ", processRrn=" + processRrn + ", " +
"processVersion=" + processVersion + ", productVersion=" + productVersion + ", productRrn=" +
productRrn + ", lotRrn=" + lotRrn + ", actionPoint='" + actionPoint + '\'' + '}';
}
}