view src/main/java/de/intevation/lada/model/stamm/MessMethode.java @ 422:7fbf0246012c

Added model classes for lada (bund, land, stammdaten).
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 04 Feb 2015 16:03:15 +0100
parents
children
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.stamm;

import java.io.Serializable;

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;


/**
 * The persistent class for the mess_methode database table.
 */
@Entity
@Table(name="mess_methode")
public class MessMethode implements Serializable {
    private static final long serialVersionUID = 1L;

    @Id
    private String id;

    private String beschreibung;

    private String messmethode;

    public MessMethode() {
    }

    public String getId() {
        return this.id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getBeschreibung() {
        return this.beschreibung;
    }

    public void setBeschreibung(String beschreibung) {
        this.beschreibung = beschreibung;
    }

    public String getMessmethode() {
        return this.messmethode;
    }

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