view src/main/java/de/intevation/lada/model/stammdaten/OrtTyp.java @ 1270:6b3a551236ba

Updated stammdaten data types.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 27 Jan 2017 17:07:43 +0100
parents 186d602e031a
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.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;


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

    @Id
    private Integer id;

    @Column(name="ort_typ")
    private String ortTyp;

    @Column(name="code")
    private String code;

    public OrtTyp() {
    }

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

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

    public String getOrtTyp() {
        return this.ortTyp;
    }

    public void setOrtTyp(String ortTyp) {
        this.ortTyp = ortTyp;
    }

    public String getCode() {
        return this.code;
    }

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