view src/main/java/de/intevation/lada/model/stammdaten/OrtszuordnungTyp.java @ 1345:883ab3a6f525 tip

changed version to 2.7-SNAPSHOT after release2.6.2 for default branch
author Marco Lechner, Bundesamt fuer Strahlenschutz, SW 2.1 <mlechner@bfs.de>
date Fri, 07 Apr 2017 11:14:37 +0200
parents 6b3a551236ba
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.stammdaten;

import java.io.Serializable;
import javax.persistence.*;


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

    @Id
    private String id;

    private String ortstyp;

    public OrtszuordnungTyp() {
    }

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

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

    public String getOrtstyp() {
        return this.ortstyp;
    }

    public void setOrtstyp(String ortstyp) {
        this.ortstyp = ortstyp;
    }

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