view src/main/java/de/intevation/lada/model/stamm/StatusErreichbar.java @ 880:2311374cc3e8

These values can and should never be set.
author Tom Gottfried <tom@intevation.de>
date Thu, 11 Feb 2016 16:25:46 +0100
parents 6bd149c352a9
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.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;


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

    @Id
    private Integer id;

    @Column(name="wert_id")
    private Integer wertId;

    @Column(name="stufe_id")
    private Integer stufeId;

    @Column(name="cur_stufe")
    private Integer curStufe;

    @Column(name="cur_wert")
    private Integer curWert;

    public StatusErreichbar() {
    }

    public Integer getWertId() {
        return this.wertId;
    }

    public Integer getStufeId() {
        return this.stufeId;
    }

    public Integer getCurStufe() {
        return this.curStufe;
    }

    public Integer getCurWert() {
        return this.curWert;
    }

}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)