LotAdjustWaferH.java
/*
* @ 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.
*/
package com.mycim.valueobject.wip;
import java.io.Serializable;
public class LotAdjustWaferH implements Serializable, Cloneable {
// --------------------------------------------------------- Instance Variables
private long transRrn;
private long sourceLotRrn;
private long sourceLotStepSequence;
private String sourceLotId;
private long sourceUnitRrn;
private String sourceUnitId;
private long targetLotRrn;
private long targetLotStepSequence;
private String targetLotId;
private String transComment;
private long targetUnitRrn;
private String targetUnitId;
public long getTransRrn() {
return transRrn;
}
public void setTransRrn(long transRrn) {
this.transRrn = transRrn;
}
public long getSourceLotRrn() {
return sourceLotRrn;
}
public void setSourceLotRrn(long sourceLotRrn) {
this.sourceLotRrn = sourceLotRrn;
}
public long getSourceLotStepSequence() {
return sourceLotStepSequence;
}
public void setSourceLotStepSequence(long sourceLotStepSequence) {
this.sourceLotStepSequence = sourceLotStepSequence;
}
public String getSourceLotId() {
return sourceLotId;
}
public void setSourceLotId(String sourceLotId) {
this.sourceLotId = sourceLotId;
}
public long getSourceUnitRrn() {
return sourceUnitRrn;
}
public void setSourceUnitRrn(long sourceUnitRrn) {
this.sourceUnitRrn = sourceUnitRrn;
}
public String getSourceUnitId() {
return sourceUnitId;
}
public void setSourceUnitId(String sourceUnitId) {
this.sourceUnitId = sourceUnitId;
}
public long getTargetLotRrn() {
return targetLotRrn;
}
public void setTargetLotRrn(long targetLotRrn) {
this.targetLotRrn = targetLotRrn;
}
public long getTargetLotStepSequence() {
return targetLotStepSequence;
}
public void setTargetLotStepSequence(long targetLotStepSequence) {
this.targetLotStepSequence = targetLotStepSequence;
}
public String getTargetLotId() {
return targetLotId;
}
public void setTargetLotId(String targetLotId) {
this.targetLotId = targetLotId;
}
public String getTransComment() {
return transComment;
}
public void setTransComment(String transComment) {
this.transComment = transComment;
}
public long getTargetUnitRrn() {
return targetUnitRrn;
}
public void setTargetUnitRrn(long targetUnitRrn) {
this.targetUnitRrn = targetUnitRrn;
}
public String getTargetUnitId() {
return targetUnitId;
}
public void setTargetUnitId(String targetUnitId) {
this.targetUnitId = targetUnitId;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/