SortJobDetailResponse.java

package com.mycim.valueobject.wip.responseModel;

import java.io.Serializable;

/**
 * @author Aiden
 * @date 2019年3月8日上午8:50:52
 * @description
 */
public class SortJobDetailResponse implements Serializable {

    private static final long serialVersionUID = 1L;

    private Long jobRrn;

    private Long sourceCarrierRrn;

    private String sourceCarrierId;

    private Long lotRrn;

    private String lotId;

    private Long targetCarrierRrn;

    private String targetCarrierId;

    private Long unitRrn;              // 晶圆rrn

    private String unitId;

    private String t7code;

    private Integer sourcePosition;       // 原位置

    private Integer targetPosition;       // 目标位置

    public String getT7code() {
        return t7code;
    }

    public void setT7code(String t7code) {
        this.t7code = t7code;
    }

    public Long getJobRrn() {
        return jobRrn;
    }

    public void setJobRrn(Long jobRrn) {
        this.jobRrn = jobRrn;
    }

    public Long getSourceCarrierRrn() {
        return sourceCarrierRrn;
    }

    public void setSourceCarrierRrn(Long sourceCarrierRrn) {
        this.sourceCarrierRrn = sourceCarrierRrn;
    }

    public String getSourceCarrierId() {
        return sourceCarrierId;
    }

    public void setSourceCarrierId(String sourceCarrierId) {
        this.sourceCarrierId = sourceCarrierId;
    }

    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 getTargetCarrierRrn() {
        return targetCarrierRrn;
    }

    public void setTargetCarrierRrn(Long targetCarrierRrn) {
        this.targetCarrierRrn = targetCarrierRrn;
    }

    public String getTargetCarrierId() {
        return targetCarrierId;
    }

    public void setTargetCarrierId(String targetCarrierId) {
        this.targetCarrierId = targetCarrierId;
    }

    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 Integer getSourcePosition() {
        return sourcePosition;
    }

    public void setSourcePosition(Integer sourcePosition) {
        this.sourcePosition = sourcePosition;
    }

    public Integer getTargetPosition() {
        return targetPosition;
    }

    public void setTargetPosition(Integer targetPosition) {
        this.targetPosition = targetPosition;
    }

}