view src/main/java/de/intevation/lada/model/land/LMessung.java @ 445:c18284cdd101

Moved haupt-/nebenproben nr from translation tables to probe/messung.
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 11 Feb 2015 12:49:24 +0100
parents 7fbf0246012c
children dbeb56e913fd
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU GPL (v>=3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out
 * the documentation coming with IMIS-Labordaten-Application for details.
 */
package de.intevation.lada.model.land;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;

import de.intevation.lada.model.Messung;


/**
 * The persistent class for the messung database table.
 */
@Entity
@Table(name="messung")
public class LMessung extends Messung {
    private static final long serialVersionUID = 1L;

    @Column(name="nebenproben_nr")
    private String nebenprobenNr;

    private Boolean geplant;

    public LMessung() {
    }


    public Boolean getGeplant() {
        return this.geplant;
    }

    public void setGeplant(Boolean geplant) {
        this.geplant = geplant;
    }

    public String getNebenprobenNr() {
        return nebenprobenNr;
    }

    public void setNebenprobenNr(String nebenprobenNr) {
        this.nebenprobenNr = nebenprobenNr;
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)