ReadingDto.java

// Created on Feb 1, 2015
// $Id$

package com.mycim.valueobject.wip.dto;

import java.io.Serializable;

/**
 * @author andy
 */
public class ReadingDto implements Serializable {

    private static final long serialVersionUID = -6509422871754235441L;

    private Long readingRrn;

    private String readingId;

    private Integer sampleSequence;

    private Integer readingSequence;

    private Double dataValue;

    private String collectionTimestamp;

    private String oowFlag;

    private String oosFlag;

    private String plotFlag;

    private String calculationFlag;

    private Double sampleX;

    private Double sampleY;


    public Integer getSampleSequence() {
        return sampleSequence;
    }

    public void setSampleSequence(Integer sampleSequence) {
        this.sampleSequence = sampleSequence;
    }

    public String getCalculationFlag() {
        return calculationFlag;
    }

    public void setCalculationFlag(String calculationFlag) {
        this.calculationFlag = calculationFlag;
    }

    public String getCollectionTimestamp() {
        return collectionTimestamp;
    }

    public void setCollectionTimestamp(String collectionTimestamp) {
        this.collectionTimestamp = collectionTimestamp;
    }

    public String getOowFlag() {
        return oowFlag;
    }

    public void setOowFlag(String oowFlag) {
        this.oowFlag = oowFlag;
    }

    public String getOosFlag() {
        return oosFlag;
    }

    public void setOosFlag(String oosFlag) {
        this.oosFlag = oosFlag;
    }

    public String getPlotFlag() {
        return plotFlag;
    }

    public void setPlotFlag(String plotFlag) {
        this.plotFlag = plotFlag;
    }

    /**
     * @return the readingRrn
     */
    public Long getReadingRrn() {
        return readingRrn;
    }

    /**
     * @param readingRrn the readingRrn to set
     */
    public void setReadingRrn(Long readingRrn) {
        this.readingRrn = readingRrn;
    }

    /**
     * @return the readingSequence
     */
    public Integer getReadingSequence() {
        return readingSequence;
    }

    /**
     * @param readingSequence the readingSequence to set
     */
    public void setReadingSequence(Integer readingSequence) {
        this.readingSequence = readingSequence;
    }

    /**
     * @return the readingId
     */
    public String getReadingId() {
        return readingId;
    }

    /**
     * @param readingId the readingId to set
     */
    public void setReadingId(String readingId) {
        this.readingId = readingId;
    }

    /**
     * @return the dataValue
     */
    public Double getDataValue() {
        return dataValue;
    }

    /**
     * @param dataValue the dataValue to set
     */
    public void setDataValue(Double dataValue) {
        this.dataValue = dataValue;
    }

    public Double getSampleX() {
        return sampleX;
    }

    public void setSampleX(Double sampleX) {
        this.sampleX = sampleX;
    }

    public Double getSampleY() {
        return sampleY;
    }

    public void setSampleY(Double sampleY) {
        this.sampleY = sampleY;
    }

}