Run.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.sql.Timestamp;
public class Run implements java.io.Serializable {
// --------------------------------------------------------- Instance Variables
private Long runRrn;
private Long jobRrn;
private Long operationRrn;
private String operationId;
private Long eqptRrn;
private String eqptId;
private String recipeString;
private String recipeId;
private String recipeParameter;
/*
* private String recipeId; private Long recipeRrn; private Integer recipeVersion; private Long
* recipeParameterRrn;
* private String recipeParameterId;
*/
private String runStatus;
private Timestamp processStartTime;
private Timestamp processEndTime;
private Long moveInDcolRrn;
private Long moveOutDcolRrn;
// --------------------------------------------------------- Properties
public Long getRunRrn() {
return this.runRrn;
}
public void setRunRrn(Long runRrn) {
this.runRrn = runRrn;
}
public Long getJobRrn() {
return this.jobRrn;
}
public void setJobRrn(Long jobRrn) {
this.jobRrn = jobRrn;
}
public Long getOperationRrn() {
return this.operationRrn;
}
public void setOperationRrn(Long operationRrn) {
this.operationRrn = operationRrn;
}
public String getOperationId() {
return this.operationId;
}
public void setOperationId(String operationId) {
this.operationId = operationId;
}
public Long getEqptRrn() {
return this.eqptRrn;
}
public void setEqptRrn(Long eqptRrn) {
this.eqptRrn = eqptRrn;
}
public String getEqptId() {
return this.eqptId;
}
public void setEqptId(String eqptId) {
this.eqptId = eqptId;
}
public String getRecipeString() {
return this.recipeString;
}
public void setRecipeString(String recipeString) {
this.recipeString = recipeString;
}
/*
* public Long getRecipeRrn(){ return this.recipeRrn; } public void setRecipeRrn(Long recipeRrn){ this
* .recipeRrn =
* recipeRrn; } public String getRecipeId(){ return this.recipeId; } public void setRecipeId(String
* recipeId){
* this.recipeId = recipeId; } public Integer getRecipeVersion(){ return this.recipeVersion; } public void
* setRecipeVersion(Integer recipeVersion){ this.recipeVersion = recipeVersion; } public Long
* getRecipeParameterRrn(){ return this.recipeParameterRrn; } public void setRecipeParameterRrn(Long
* recipeParameterRrn){ this.recipeParameterRrn = recipeParameterRrn; } public String
* getRecipeParameterId(){ return
* this.recipeParameterId; } public void setRecipeParameterId(String recipeParameterId){ this
* .recipeParameterId =
* recipeParameterId; }
*/
public String getRunStatus() {
return this.runStatus;
}
public void setRunStatus(String runStatus) {
this.runStatus = runStatus;
}
public Timestamp getProcessStartTime() {
return this.processStartTime;
}
public void setProcessStartTime(Timestamp processStartTime) {
this.processStartTime = processStartTime;
}
public Timestamp getProcessEndTime() {
return this.processEndTime;
}
public void setProcessEndTime(Timestamp processEndTime) {
this.processEndTime = processEndTime;
}
public Long getMoveInDcolRrn() {
return this.moveInDcolRrn;
}
public void setMoveInDcolRrn(Long moveInDcolRrn) {
this.moveInDcolRrn = moveInDcolRrn;
}
public Long getMoveOutDcolRrn() {
return this.moveOutDcolRrn;
}
public void setMoveOutDcolRrn(Long moveOutDcolRrn) {
this.moveOutDcolRrn = moveOutDcolRrn;
}
public String getRecipeId() {
return recipeId;
}
public void setRecipeId(String recipeId) {
this.recipeId = recipeId;
}
public String getRecipeParameter() {
return recipeParameter;
}
public void setRecipeParameter(String recipeParameter) {
this.recipeParameter = recipeParameter;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/