EntityCounterType.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.ems;
import java.io.Serializable;
public class EntityCounterType implements Serializable {
// --------------------------------------------------------- Instance Variables
private long entityRrn;
private Long sequenceNumber;
private Long eventRrn;
private String eventId;
private Long recipeRrn;
private String recipeId;
private String counterType;
private String counterDesc;
private Long quantity;
private String basisCode;
private String transPerformedBy;
// --------------------------------------------------------- Properties
public long getEntityRrn() {
return this.entityRrn;
}
public void setEntityRrn(long entityRrn) {
this.entityRrn = entityRrn;
}
public Long getSequenceNumber() {
return this.sequenceNumber;
}
public void setSequenceNumber(Long sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public Long getEventRrn() {
return this.eventRrn;
}
public void setEventRrn(Long eventRrn) {
this.eventRrn = eventRrn;
}
public String getEventId() {
return this.eventId;
}
public void setEventId(String eventId) {
this.eventId = eventId;
}
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 String getCounterType() {
return this.counterType;
}
public void setCounterType(String counterType) {
this.counterType = counterType;
}
public String getCounterDesc() {
return this.counterDesc;
}
public void setCounterDesc(String counterDesc) {
this.counterDesc = counterDesc;
}
public Long getQuantity() {
return this.quantity;
}
public void setQuantity(Long quantity) {
this.quantity = quantity;
}
public String getBasisCode() {
return this.basisCode;
}
public void setBasisCode(String basisCode) {
this.basisCode = basisCode;
}
/**
* @return the transPerformedBy
*/
public String getTransPerformedBy() {
return transPerformedBy;
}
/**
* @param transPerformedBy the transPerformedBy to set
*/
public void setTransPerformedBy(String transPerformedBy) {
this.transPerformedBy = transPerformedBy;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/