SpcResult.java
package com.mycim.valueobject.spc;
import java.io.Serializable;
import java.util.Date;
/**
* @author songpy
* @version 1.0.0
* @date 2021/1/21
**/
public class SpcResult implements Serializable {
private static final long serialVersionUID = 9020047549629004613L;
private Long resultSequence;
private Long lotRrn;
private Long productRrn;
private Long processRrn;
private Long routeRrn;
private Long operationRrn;
private Long stepSequence;
private String performedBy;
private Date logDate;
private String collectionLevel;
private String reasonCode;
private Boolean holdFlag;
private String errorCode;
private String errorMessage;
private String holdType;
private String edcType;
private String alarmId;
private Long dcolRrn;
private String ocapId;
private Long spcLotRrn;
public Long getResultSequence() {
return resultSequence;
}
public void setResultSequence(Long resultSequence) {
this.resultSequence = resultSequence;
}
public Long getLotRrn() {
return lotRrn;
}
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
public Long getProductRrn() {
return productRrn;
}
public void setProductRrn(Long productRrn) {
this.productRrn = productRrn;
}
public Long getProcessRrn() {
return processRrn;
}
public void setProcessRrn(Long processRrn) {
this.processRrn = processRrn;
}
public Long getRouteRrn() {
return routeRrn;
}
public void setRouteRrn(Long routeRrn) {
this.routeRrn = routeRrn;
}
public Long getOperationRrn() {
return operationRrn;
}
public void setOperationRrn(Long operationRrn) {
this.operationRrn = operationRrn;
}
public Long getStepSequence() {
return stepSequence;
}
public void setStepSequence(Long stepSequence) {
this.stepSequence = stepSequence;
}
public String getPerformedBy() {
return performedBy;
}
public void setPerformedBy(String performedBy) {
this.performedBy = performedBy;
}
public Date getLogDate() {
return logDate;
}
public void setLogDate(Date logDate) {
this.logDate = logDate;
}
public String getCollectionLevel() {
return collectionLevel;
}
public void setCollectionLevel(String collectionLevel) {
this.collectionLevel = collectionLevel;
}
public String getReasonCode() {
return reasonCode;
}
public void setReasonCode(String reasonCode) {
this.reasonCode = reasonCode;
}
public Boolean getHoldFlag() {
return holdFlag;
}
public void setHoldFlag(Boolean holdFlag) {
this.holdFlag = holdFlag;
}
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getHoldType() {
return holdType;
}
public void setHoldType(String holdType) {
this.holdType = holdType;
}
public String getEdcType() {
return edcType;
}
public void setEdcType(String edcType) {
this.edcType = edcType;
}
public String getAlarmId() {
return alarmId;
}
public void setAlarmId(String alarmId) {
this.alarmId = alarmId;
}
public Long getDcolRrn() {
return dcolRrn;
}
public void setDcolRrn(Long dcolRrn) {
this.dcolRrn = dcolRrn;
}
public String getOcapId() {
return ocapId;
}
public void setOcapId(String ocapId) {
this.ocapId = ocapId;
}
public Long getSpcLotRrn() {
return spcLotRrn;
}
public void setSpcLotRrn(Long spcLotRrn) {
this.spcLotRrn = spcLotRrn;
}
@Override
public String toString() {
return "SpcResult{" + "resultSequence=" + resultSequence + ", lotRrn=" + lotRrn + ", productRrn=" + productRrn +
", processRrn=" + processRrn + ", routeRrn=" + routeRrn + ", operationRrn=" + operationRrn +
", stepSequence=" + stepSequence + ", performedBy='" + performedBy + '\'' + ", logDate=" + logDate +
", collectionLevel='" + collectionLevel + '\'' + ", reasonCode='" + reasonCode + '\'' + ", holdFlag=" +
holdFlag + ", errorCode='" + errorCode + '\'' + ", errorMessage='" + errorMessage + '\'' +
", holdType='" + holdType + '\'' + ", edcType='" + edcType + '\'' + ", alarmId='" + alarmId + '\'' +
", dcolRrn=" + dcolRrn + ", ocapId='" + ocapId + '\'' + ", spcLotRrn=" + spcLotRrn + '}';
}
}