ChecklistItem.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 ChecklistItem implements Serializable {
// --------------------------------------------------------- Instance Variables
private String checklistItemId;
private String checklistItemDesc;
private int checklistSequence;
private Long borRrn;
private String dataType;
private Double upperLimit;
private Double lowerLimit;
private Long parameterSetRrn;
private int checklistVersion;
private long checklistRrn;
private String transId;
private String transPerformedby;
private String parameterSetId;
private String unit;
private String bool;
// --------------------------------------------------------- Properties
public int getChecklistVersion() {
return this.checklistVersion;
}
public void setChecklistVersion(int checklistVersion) {
this.checklistVersion = checklistVersion;
}
public int getChecklistSequence() {
return this.checklistSequence;
}
public void setChecklistSequence(int checklistSequence) {
this.checklistSequence = checklistSequence;
}
public String getChecklistItemDesc() {
return this.checklistItemDesc;
}
public void setChecklistItemDesc(String checklistItemDesc) {
this.checklistItemDesc = checklistItemDesc;
}
public Long getBorRrn() {
return borRrn;
}
public void setBorRrn(Long borRrn) {
this.borRrn = borRrn;
}
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public Double getUpperLimit() {
return this.upperLimit;
}
public void setUpperLimit(Double upperLimit) {
this.upperLimit = upperLimit;
}
public Double getLowerLimit() {
return this.lowerLimit;
}
public void setLowerLimit(Double lowerLimit) {
this.lowerLimit = lowerLimit;
}
public Long getParameterSetRrn() {
return parameterSetRrn;
}
public void setParameterSetRrn(Long parameterSetRrn) {
this.parameterSetRrn = parameterSetRrn;
}
public String getChecklistItemId() {
return checklistItemId;
}
public void setChecklistItemId(String checklistItemId) {
this.checklistItemId = checklistItemId;
}
public long getChecklistRrn() {
return checklistRrn;
}
public void setChecklistRrn(long checklistRrn) {
this.checklistRrn = checklistRrn;
}
public String getTransId() {
return transId;
}
public void setTransId(String transId) {
this.transId = transId;
}
public String getTransPerformedby() {
return transPerformedby;
}
public void setTransPerformedby(String transPerformedby) {
this.transPerformedby = transPerformedby;
}
public String getParameterSetId() {
return parameterSetId;
}
public void setParameterSetId(String parameterSetId) {
this.parameterSetId = parameterSetId;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public String getBool() {
return bool;
}
public void setBool(String bool) {
this.bool = bool;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/