EquipmentReport.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 com.mycim.valueobject.bas.NamedObject;
import java.util.ArrayList;
import java.util.Collection;
public class EquipmentReport extends NamedObject {
private String reportId;
private String reportDesc;
private Integer sequenceNumber;
private String vid;
private String tagName;
private Long edcParameterRrn;
private Collection reports = new ArrayList();
// --------------------------------------------------------- Properties
public String getReportId() {
return this.reportId;
}
public void setReportId(String reportId) {
this.reportId = reportId;
}
public String getReportDesc() {
return this.reportDesc;
}
public void setReportDesc(String reportDesc) {
this.reportDesc = reportDesc;
}
public Integer getSequenceNumber() {
return this.sequenceNumber;
}
public void setSequenceNumber(Integer sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public String getVid() {
return this.vid;
}
public void setVid(String vid) {
this.vid = vid;
}
public String getTagName() {
return this.tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
}
public Long getEdcParameterRrn() {
return this.edcParameterRrn;
}
public void setEdcParameterRrn(Long edcParameterRrn) {
this.edcParameterRrn = edcParameterRrn;
}
public Collection getReports() {
return this.reports;
}
public void setReports(Collection reports) {
this.reports = reports;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/