ProductSpecItemDto.java
package com.mycim.valueobject.prp;
import java.io.Serializable;
import java.util.Date;
/**
* @author Luopeng.Wang
* @version 6.0.0
* @date 2021/3/23
**/
public class ProductSpecItemDto implements Serializable {
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 operationDesc;
private String operationType;
private String operationSeq;
private String flowSeq;
private String workArea;
private String stageId;
private String recipeId;
private String reticleFamilyId;
private String parameterSetId;
private String equipmentGroupId;
private String pollutionLevel;
private String processLocation;
private String bankFlag;
private String cpDefine;
private Long ecnRrn;
private String status;
private Date effectiveTime;
private Date terminatedTime;
private String createdUser;
private Date createdTime;
private String updatedUser;
private Date updatedTime;
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 getOperationDesc() {
return operationDesc;
}
public void setOperationDesc(String operationDesc) {
this.operationDesc = operationDesc;
}
public String getOperationType() {
return operationType;
}
public void setOperationType(String operationType) {
this.operationType = operationType;
}
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 String getWorkArea() {
return workArea;
}
public void setWorkArea(String workArea) {
this.workArea = workArea;
}
public String getStageId() {
return stageId;
}
public void setStageId(String stageId) {
this.stageId = stageId;
}
public String getRecipeId() {
return recipeId;
}
public void setRecipeId(String recipeId) {
this.recipeId = recipeId;
}
public String getReticleFamilyId() {
return reticleFamilyId;
}
public void setReticleFamilyId(String reticleFamilyId) {
this.reticleFamilyId = reticleFamilyId;
}
public String getParameterSetId() {
return parameterSetId;
}
public void setParameterSetId(String parameterSetId) {
this.parameterSetId = parameterSetId;
}
public String getEquipmentGroupId() {
return equipmentGroupId;
}
public void setEquipmentGroupId(String equipmentGroupId) {
this.equipmentGroupId = equipmentGroupId;
}
public String getPollutionLevel() {
return pollutionLevel;
}
public void setPollutionLevel(String pollutionLevel) {
this.pollutionLevel = pollutionLevel;
}
public String getProcessLocation() {
return processLocation;
}
public void setProcessLocation(String processLocation) {
this.processLocation = processLocation;
}
public String getBankFlag() {
return bankFlag;
}
public void setBankFlag(String bankFlag) {
this.bankFlag = bankFlag;
}
public String getCpDefine() {
return cpDefine;
}
public void setCpDefine(String cpDefine) {
this.cpDefine = cpDefine;
}
public Long getEcnRrn() {
return ecnRrn;
}
public void setEcnRrn(Long ecnRrn) {
this.ecnRrn = ecnRrn;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Date getEffectiveTime() {
return effectiveTime;
}
public void setEffectiveTime(Date effectiveTime) {
this.effectiveTime = effectiveTime;
}
public Date getTerminatedTime() {
return terminatedTime;
}
public void setTerminatedTime(Date terminatedTime) {
this.terminatedTime = terminatedTime;
}
public String getCreatedUser() {
return createdUser;
}
public void setCreatedUser(String createdUser) {
this.createdUser = createdUser;
}
public Date getCreatedTime() {
return createdTime;
}
public void setCreatedTime(Date createdTime) {
this.createdTime = createdTime;
}
public String getUpdatedUser() {
return updatedUser;
}
public void setUpdatedUser(String updatedUser) {
this.updatedUser = updatedUser;
}
public Date getUpdatedTime() {
return updatedTime;
}
public void setUpdatedTime(Date updatedTime) {
this.updatedTime = updatedTime;
}
}