AutoMonitorItemStepEdcInfo.java

package com.mycim.valueobject.automonitor.entity;

import java.io.Serializable;

/**
 * @author finatice.yang
 */
public class AutoMonitorItemStepEdcInfo implements Serializable {

    private Long workflowRrn;

    private Integer workflowVersion;

    private String workflowId;

    private Long stepSequence;

    private Long waferSlot;

    private String nonRTJobIds;

    private String nonRTJobNames;

    public AutoMonitorItemStepEdcInfo() {
    }

    public AutoMonitorItemStepEdcInfo(Long workflowRrn, Integer workflowVersion, Long stepSequence) {
        super();
        this.workflowRrn = workflowRrn;
        this.workflowVersion = workflowVersion;
        this.stepSequence = stepSequence;
    }

    public Long getWorkflowRrn() {
        return workflowRrn;
    }

    public void setWorkflowRrn(Long workflowRrn) {
        this.workflowRrn = workflowRrn;
    }

    public Integer getWorkflowVersion() {
        return workflowVersion;
    }

    public void setWorkflowVersion(Integer workflowVersion) {
        this.workflowVersion = workflowVersion;
    }

    public String getWorkflowId() {
        return workflowId;
    }

    public void setWorkflowId(String workflowId) {
        this.workflowId = workflowId;
    }

    public Long getStepSequence() {
        return stepSequence;
    }

    public void setStepSequence(Long stepSequence) {
        this.stepSequence = stepSequence;
    }

    public Long getWaferSlot() {
        return waferSlot;
    }

    public void setWaferSlot(Long waferSlot) {
        this.waferSlot = waferSlot;
    }

    public String getNonRTJobIds() {
        return nonRTJobIds;
    }

    public void setNonRTJobIds(String nonRTJobIds) {
        this.nonRTJobIds = nonRTJobIds;
    }

    public String getNonRTJobNames() {
        return nonRTJobNames;
    }

    public void setNonRTJobNames(String nonRTJobNames) {
        this.nonRTJobNames = nonRTJobNames;
    }

}