SamplePromptDTO.java
package com.mycim.valueobject.automonitor.dto;
import java.util.List;
public class SamplePromptDTO {
private Long sampleRrn;
private String sampleId;
private Integer sampleSequence;
private String position;
private String recipeId;
private Double sampleValue;
private String unitId;
private Long unitRrn;
private Integer readingPromptSize;
private List<ReadingPromptDTO> readingPrompts;
/**
* @return the sampleRrn
*/
public Long getSampleRrn() {
return sampleRrn;
}
/**
* @param sampleRrn the sampleRrn to set
*/
public void setSampleRrn(Long sampleRrn) {
this.sampleRrn = sampleRrn;
}
/**
* @return the sampleId
*/
public String getSampleId() {
return sampleId;
}
/**
* @param sampleId the sampleId to set
*/
public void setSampleId(String sampleId) {
this.sampleId = sampleId;
}
/**
* @return the sampleSequence
*/
public Integer getSampleSequence() {
return sampleSequence;
}
/**
* @param sampleSequence the sampleSequence to set
*/
public void setSampleSequence(Integer sampleSequence) {
this.sampleSequence = sampleSequence;
}
/**
* @return the position
*/
public String getPosition() {
return position;
}
/**
* @param position the position to set
*/
public void setPosition(String position) {
this.position = position;
}
/**
* @return the recipeId
*/
public String getRecipeId() {
return recipeId;
}
/**
* @param recipeId the recipeId to set
*/
public void setRecipeId(String recipeId) {
this.recipeId = recipeId;
}
/**
* @return the sampleValue
*/
public Double getSampleValue() {
return sampleValue;
}
/**
* @param sampleValue the sampleValue to set
*/
public void setSampleValue(Double sampleValue) {
this.sampleValue = sampleValue;
}
/**
* @return the unitId
*/
public String getUnitId() {
return unitId;
}
/**
* @param unitId the unitId to set
*/
public void setUnitId(String unitId) {
this.unitId = unitId;
}
/**
* @return the unitRrn
*/
public Long getUnitRrn() {
return unitRrn;
}
/**
* @param unitRrn the unitRrn to set
*/
public void setUnitRrn(Long unitRrn) {
this.unitRrn = unitRrn;
}
/**
* @return the readingPromptSize
*/
public Integer getReadingPromptSize() {
return readingPromptSize;
}
/**
* @param readingPromptSize the readingPromptSize to set
*/
public void setReadingPromptSize(Integer readingPromptSize) {
this.readingPromptSize = readingPromptSize;
}
/**
* @return the readingPrompts
*/
public List<ReadingPromptDTO> getReadingPrompts() {
return readingPrompts;
}
/**
* @param readingPrompts the readingPrompts to set
*/
public void setReadingPrompts(List<ReadingPromptDTO> readingPrompts) {
this.readingPrompts = readingPrompts;
}
}