LotProcessInfo.java

package com.mycim.valueobject.wip;

import java.io.Serializable;
import java.util.Date;

/**
 * @author Luopeng.Wang
 * @version 6.0.0
 * @date 2019/11/5
 * <p>
 * Space接口,M和P过站信息存放
 **/
public class LotProcessInfo implements Serializable {
    private Long lotRrn;

    private Long stepSequence;

    private String stepType;

    private String flowSeq;

    private String waferRoute;

    private Date moveInTime;

    private String moveInUser;

    private Date moveOutTime;

    private String moveOutUser;

    private Date createdTime;

    private Date updatedTime;

    public Long getLotRrn() {
        return lotRrn;
    }

    public void setLotRrn(Long lotRrn) {
        this.lotRrn = lotRrn;
    }

    public Long getStepSequence() {
        return stepSequence;
    }

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

    public String getStepType() {
        return stepType;
    }

    public void setStepType(String stepType) {
        this.stepType = stepType;
    }

    public String getFlowSeq() {
        return flowSeq;
    }

    public void setFlowSeq(String flowSeq) {
        this.flowSeq = flowSeq;
    }

    public String getWaferRoute() {
        return waferRoute;
    }

    public void setWaferRoute(String waferRoute) {
        this.waferRoute = waferRoute;
    }

    public Date getMoveInTime() {
        return moveInTime;
    }

    public void setMoveInTime(Date moveInTime) {
        this.moveInTime = moveInTime;
    }

    public String getMoveInUser() {
        return moveInUser;
    }

    public void setMoveInUser(String moveInUser) {
        this.moveInUser = moveInUser;
    }

    public Date getMoveOutTime() {
        return moveOutTime;
    }

    public void setMoveOutTime(Date moveOutTime) {
        this.moveOutTime = moveOutTime;
    }

    public String getMoveOutUser() {
        return moveOutUser;
    }

    public void setMoveOutUser(String moveOutUser) {
        this.moveOutUser = moveOutUser;
    }

    public Date getCreatedTime() {
        return createdTime;
    }

    public void setCreatedTime(Date createdTime) {
        this.createdTime = createdTime;
    }

    public Date getUpdatedTime() {
        return updatedTime;
    }

    public void setUpdatedTime(Date updatedTime) {
        this.updatedTime = updatedTime;
    }

}