Reticle.java
package com.mycim.valueobject.ems;
/*
* @ Copyright 2001 FA Software;
* All right reserved. No part of this program may be reproduced or
* transmitted in any form or by any means, electronic or
* mechanical, including photocopying, recording, or by any
* information storage or retrieval system without written
* permission from FA Software, except for inclusion of brief
* quotations in a review.
*/
import java.io.Serializable;
public class Reticle extends Entity implements Serializable {
private static final long serialVersionUID = -8929546274527772110L;
private Long transRrn;
private Long transSequence;
private Long lotRrn;
private String lotId;
private Long lotStepSequence;
private Double lotQty1;
private Long eqptRrn;
private String prevEntityStatus;
private String currentEntityStatus;
private String comments;
private Integer cleanCount;
private String prevLocationId;
public String getPrevLocationId() {
return prevLocationId;
}
public void setPrevLocationId(String prevLocationId) {
this.prevLocationId = prevLocationId;
}
public Reticle() {
}
public Reticle(String instanceId, String namedSpace, String object) {
super(instanceId, namedSpace, object);
}
public Reticle(Long rrn) {
super(rrn);
}
public Long getTransRrn() {
return transRrn;
}
public void setTransRrn(Long transRrn) {
this.transRrn = transRrn;
}
public Long getTransSequence() {
return transSequence;
}
public void setTransSequence(Long transSequence) {
this.transSequence = transSequence;
}
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 getLotStepSequence() {
return lotStepSequence;
}
public void setLotStepSequence(Long lotStepSequence) {
this.lotStepSequence = lotStepSequence;
}
public Double getLotQty1() {
return lotQty1;
}
public void setLotQty1(Double lotQty1) {
this.lotQty1 = lotQty1;
}
public Long getEqptRrn() {
return eqptRrn;
}
public void setEqptRrn(Long eqptRrn) {
this.eqptRrn = eqptRrn;
}
public String getPrevEntityStatus() {
return prevEntityStatus;
}
public void setPrevEntityStatus(String prevEntityStatus) {
this.prevEntityStatus = prevEntityStatus;
}
public String getCurrentEntityStatus() {
return currentEntityStatus;
}
public void setCurrentEntityStatus(String currentEntityStatus) {
this.currentEntityStatus = currentEntityStatus;
}
public String getComments() {
return comments;
}
public void setComments(String comments) {
this.comments = comments;
}
public Integer getCleanCount() {
return cleanCount;
}
public void setCleanCount(Integer cleanCount) {
this.cleanCount = cleanCount;
}
}