LotMonitorJobStepInfo.java
package com.mycim.valueobject.automonitor.entity;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
public class LotMonitorJobStepInfo implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private Long lotRrn;
private String lotId;
private Long stepSequence;
private Long eqptRrn;
private String eqptId;
private Long unitRrn;
private String unitId;
private String spcJobId;
private String spcJobName;
private String formula;
private String dataValue;
private Long operationRrn;
private String operationType;
private Long itemEqptRrn;
private String itemEqptId;
private String itemType;
private Long workflowRrn;
private Long workflowVersion;
private String createUser;
private Date createTime;
private List<LotMonitorJobStepEdcInfo> edcInfoList;
public Long getLotRrn() {
return lotRrn;
}
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
public String getLotId() {
return lotId;
}
public void setLotId(String lotId) {
this.lotId = lotId;
}
public Long getStepSequence() {
return stepSequence;
}
public void setStepSequence(Long stepSequence) {
this.stepSequence = stepSequence;
}
public Long getEqptRrn() {
return eqptRrn;
}
public void setEqptRrn(Long eqptRrn) {
this.eqptRrn = eqptRrn;
}
public String getEqptId() {
return eqptId;
}
public void setEqptId(String eqptId) {
this.eqptId = eqptId;
}
public Long getUnitRrn() {
return unitRrn;
}
public void setUnitRrn(Long unitRrn) {
this.unitRrn = unitRrn;
}
public String getUnitId() {
return unitId;
}
public void setUnitId(String unitId) {
this.unitId = unitId;
}
public String getSpcJobId() {
return spcJobId;
}
public void setSpcJobId(String spcJobId) {
this.spcJobId = spcJobId;
}
public String getSpcJobName() {
return spcJobName;
}
public void setSpcJobName(String spcJobName) {
this.spcJobName = spcJobName;
}
public String getFormula() {
return formula;
}
public void setFormula(String formula) {
this.formula = formula;
}
public String getDataValue() {
return dataValue;
}
public void setDataValue(String dataValue) {
this.dataValue = dataValue;
}
public Long getOperationRrn() {
return operationRrn;
}
public void setOperationRrn(Long operationRrn) {
this.operationRrn = operationRrn;
}
public String getOperationType() {
return operationType;
}
public void setOperationType(String operationType) {
this.operationType = operationType;
}
public Long getItemEqptRrn() {
return itemEqptRrn;
}
public void setItemEqptRrn(Long itemEqptRrn) {
this.itemEqptRrn = itemEqptRrn;
}
public String getItemEqptId() {
return itemEqptId;
}
public void setItemEqptId(String itemEqptId) {
this.itemEqptId = itemEqptId;
}
public String getItemType() {
return itemType;
}
public void setItemType(String itemType) {
this.itemType = itemType;
}
public Long getWorkflowRrn() {
return workflowRrn;
}
public void setWorkflowRrn(Long workflowRrn) {
this.workflowRrn = workflowRrn;
}
public Long getWorkflowVersion() {
return workflowVersion;
}
public void setWorkflowVersion(Long workflowVersion) {
this.workflowVersion = workflowVersion;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public List<LotMonitorJobStepEdcInfo> getEdcInfoList() {
return edcInfoList;
}
public void setEdcInfoList(List<LotMonitorJobStepEdcInfo> edcInfoList) {
this.edcInfoList = edcInfoList;
}
}