view src/main/java/de/intevation/lada/model/land/LProbe.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 c18284cdd101
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 java.sql.Timestamp;

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

import de.intevation.lada.model.Probe;


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

    @Column(name="erzeuger_id")
    private Integer erzeugerId;

    @Column(name="mp_kat")
    private String mpKat;

    @Column(name="mpl_id")
    private String mplId;

    @Column(name="mpr_id")
    private Integer mprId;

    @Column(name="probe_nehmer_id")
    private Integer probeNehmerId;

    @Column(name="solldatum_beginn")
    private Timestamp solldatumBeginn;

    @Column(name="solldatum_ende")
    private Timestamp solldatumEnde;

    public LProbe() {
    }

    public Integer getErzeugerId() {
        return this.erzeugerId;
    }

    public void setErzeugerId(Integer erzeugerId) {
        this.erzeugerId = erzeugerId;
    }

    public String getMpKat() {
        return this.mpKat;
    }

    public void setMpKat(String mpKat) {
        this.mpKat = mpKat;
    }

    public String getMplId() {
        return this.mplId;
    }

    public void setMplId(String mplId) {
        this.mplId = mplId;
    }

    public Integer getMprId() {
        return this.mprId;
    }

    public void setMprId(Integer mprId) {
        this.mprId = mprId;
    }

    public Integer getProbeNehmerId() {
        return this.probeNehmerId;
    }

    public void setProbeNehmerId(Integer probeNehmerId) {
        this.probeNehmerId = probeNehmerId;
    }

    public Timestamp getSolldatumBeginn() {
        return this.solldatumBeginn;
    }

    public void setSolldatumBeginn(Timestamp solldatumBeginn) {
        this.solldatumBeginn = solldatumBeginn;
    }

    public Timestamp getSolldatumEnde() {
        return this.solldatumEnde;
    }

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