SortJobResponse.java
package com.mycim.valueobject.wip.responseModel;
import java.io.Serializable;
import java.util.Date;
/**
* @author Aiden
* @date 2019年3月7日下午1:49:13
* @description
*/
public class SortJobResponse implements Serializable {
private static final long serialVersionUID = 1L;
private Long jobRrn;
private Long facilityRrn;
private Long sourceCarrierRrn;
private String sourceCarrierId;
private Long lotRrn;
private String lotId;
private Long targetCarrierRrn;
private String targetCarrierId;
private String status; // job状态 COMPLETE,CANCEL,WAITING
private String jobType; // job类型 EXCHANGE,SPLIT
private Integer exchangeTotalQty; // 涉及的wafer数量
private Date createTime;
private String createUser;
private Date completedTime; // 完成时间
private Long targetCarrierRrn2;
private String targetCarrierId2;
private String targetLotId; // 目标晶舟的lotId
private String targetLotStatus;
private Integer splitSeq;
private String sourceLotStatus;
public Long getJobRrn() {
return jobRrn;
}
public void setJobRrn(Long jobRrn) {
this.jobRrn = jobRrn;
}
public Long getFacilityRrn() {
return facilityRrn;
}
public void setFacilityRrn(Long facilityRrn) {
this.facilityRrn = facilityRrn;
}
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 String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getJobType() {
return jobType;
}
public void setJobType(String jobType) {
this.jobType = jobType;
}
public Integer getExchangeTotalQty() {
return exchangeTotalQty;
}
public void setExchangeTotalQty(Integer exchangeTotalQty) {
this.exchangeTotalQty = exchangeTotalQty;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public Date getCompletedTime() {
return completedTime;
}
public void setCompletedTime(Date completedTime) {
this.completedTime = completedTime;
}
public Long getTargetCarrierRrn2() {
return targetCarrierRrn2;
}
public void setTargetCarrierRrn2(Long targetCarrierRrn2) {
this.targetCarrierRrn2 = targetCarrierRrn2;
}
public String getTargetCarrierId2() {
return targetCarrierId2;
}
public void setTargetCarrierId2(String targetCarrierId2) {
this.targetCarrierId2 = targetCarrierId2;
}
public String getTargetLotId() {
return targetLotId;
}
public void setTargetLotId(String targetLotId) {
this.targetLotId = targetLotId;
}
public String getTargetLotStatus() {
return targetLotStatus;
}
public void setTargetLotStatus(String targetLotStatus) {
this.targetLotStatus = targetLotStatus;
}
public Integer getSplitSeq() {
return splitSeq;
}
public void setSplitSeq(Integer splitSeq) {
this.splitSeq = splitSeq;
}
public String getSourceLotStatus() {
return sourceLotStatus;
}
public void setSourceLotStatus(String sourceLotStatus) {
this.sourceLotStatus = sourceLotStatus;
}
}