view src/main/java/de/intevation/lada/model/stamm/StatusWert.java @ 744:7e6a0227428d

Added model and services for statusstufe and statuswert.
author Raimund Renkert <raimund.renkert@intevation.de>
date Tue, 27 Oct 2015 09:56:16 +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 status_wert database table.
 * 
 */
@Entity
@Table(name="status_wert")
public class StatusWert implements Serializable {
    private static final long serialVersionUID = 1L;

    @Id
    private Integer id;

    private String wert;

    public StatusWert() {
    }

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

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

    public String getWert() {
        return this.wert;
    }

    public void setWert(String wert) {
        this.wert = wert;
    }

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