SvidDefinition.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;
public class SvidDefinition implements java.io.Serializable {
private String variableType;
private Integer sequenceNumber;
private Long eqptModelRrn;
private String vid;
private String variableDesc;
private String format;
public Long getEqptModelRrn() {
return eqptModelRrn;
}
public void setEqptModelRrn(Long eqptModelRrn) {
this.eqptModelRrn = eqptModelRrn;
}
public String getVariableType() {
return variableType;
}
public void setVariableType(String variableType) {
this.variableType = variableType;
}
public Integer getSequenceNumber() {
return sequenceNumber;
}
public void setSequenceNumber(Integer sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public String getVid() {
return vid;
}
public void setVid(String vid) {
this.vid = vid;
}
public String getVariableDesc() {
return variableDesc;
}
public void setVariableDesc(String variableDesc) {
this.variableDesc = variableDesc;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
}