ReadingPromptDTO.java
package com.mycim.valueobject.automonitor.dto;
public class ReadingPromptDTO {
private Long readingRrn;
private String readingId;
private Integer readingSequence;
private Double dataValue;
/**
* @return the readingRrn
*/
public Long getReadingRrn() {
return readingRrn;
}
/**
* @param readingRrn the readingRrn to set
*/
public void setReadingRrn(Long readingRrn) {
this.readingRrn = readingRrn;
}
/**
* @return the readingId
*/
public String getReadingId() {
return readingId;
}
/**
* @param readingId the readingId to set
*/
public void setReadingId(String readingId) {
this.readingId = readingId;
}
/**
* @return the readingSequence
*/
public Integer getReadingSequence() {
return readingSequence;
}
/**
* @param readingSequence the readingSequence to set
*/
public void setReadingSequence(Integer readingSequence) {
this.readingSequence = readingSequence;
}
/**
* @return the dataValue
*/
public Double getDataValue() {
return dataValue;
}
/**
* @param dataValue the dataValue to set
*/
public void setDataValue(Double dataValue) {
this.dataValue = dataValue;
}
}