LotDispatchInfoDTO.java
package com.mycim.valueobject.automonitor.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Dispatch lot information requested by the dispatch lot API
*
* @author Qiansheng.Wang
* @since 2020-05-19
*/
public class LotDispatchInfoDTO {
private String lotId;
private String trackFlag;
private String chamberType;
private Long recipeLogicalRrn = 0L;
private String ppid;
private String reticleId;
private String reticleGroupId;
private Long reticleGroupRrn = 0L;
private String bondingTag;
private String carrierId;
@JsonProperty("outCarrierId")
private String outCarrierId;
@JsonProperty("debondCarrier")
private String debondCarrierId;
private String manualFlag;
/**
* @return the lotId
*/
public String getLotId() {
return lotId;
}
/**
* @param lotId the lotId to set
*/
public void setLotId(String lotId) {
this.lotId = lotId;
}
/**
* @return the trackFlag
*/
public String getTrackFlag() {
return trackFlag;
}
/**
* @param trackFlag the trackFlag to set
*/
public void setTrackFlag(String trackFlag) {
this.trackFlag = trackFlag;
}
/**
* @return the chamberType
*/
public String getChamberType() {
return chamberType;
}
/**
* @param chamberType the chamberType to set
*/
public void setChamberType(String chamberType) {
this.chamberType = chamberType;
}
/**
* @return the recipeLogicalRrn
*/
public Long getRecipeLogicalRrn() {
return recipeLogicalRrn;
}
/**
* @param recipeLogicalRrn the recipeLogicalRrn to set
*/
public void setRecipeLogicalRrn(Long recipeLogicalRrn) {
this.recipeLogicalRrn = recipeLogicalRrn;
}
/**
* @return the ppid
*/
public String getPpid() {
return ppid;
}
/**
* @param ppid the ppid to set
*/
public void setPpid(String ppid) {
this.ppid = ppid;
}
public String getReticleId() {
return reticleId;
}
public void setReticleId(String reticleId) {
this.reticleId = reticleId;
}
/**
* @return the reticleGroupId
*/
public String getReticleGroupId() {
return reticleGroupId;
}
/**
* @param reticleGroupId the reticleGroupId to set
*/
public void setReticleGroupId(String reticleGroupId) {
this.reticleGroupId = reticleGroupId;
}
/**
* @return the reticleGroupRrn
*/
public Long getReticleGroupRrn() {
return reticleGroupRrn;
}
/**
* @param reticleGroupRrn the reticleGroupRrn to set
*/
public void setReticleGroupRrn(Long reticleGroupRrn) {
this.reticleGroupRrn = reticleGroupRrn;
}
/**
* @return the bondingTag
*/
public String getBondingTag() {
return bondingTag;
}
/**
* @param bondingTag the bondingTag to set
*/
public void setBondingTag(String bondingTag) {
this.bondingTag = bondingTag;
}
/**
* @return the carrierId
*/
public String getCarrierId() {
return carrierId;
}
/**
* @param carrierId the carrierId to set
*/
public void setCarrierId(String carrierId) {
this.carrierId = carrierId;
}
/**
* @return the outCarrierId
*/
public String getOutCarrierId() {
return outCarrierId;
}
/**
* @param outCarrierId the outCarrierId to set
*/
public void setOutCarrierId(String outCarrierId) {
this.outCarrierId = outCarrierId;
}
/**
* @return the debondCarrierId
*/
public String getDebondCarrierId() {
return debondCarrierId;
}
/**
* @param debondCarrierId the debondCarrierId to set
*/
public void setDebondCarrierId(String debondCarrierId) {
this.debondCarrierId = debondCarrierId;
}
public String getManualFlag() {
return manualFlag;
}
public void setManualFlag(String manualFlag) {
this.manualFlag = manualFlag;
}
}