view src/main/java/de/intevation/lada/model/stammdaten/DeskriptorUmwelt.java @ 1028:1c41c7b8f7c2 schema-update

Updated server application to new database model. THIS IS STILL WIP!!!
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 08 Jul 2016 15:32:36 +0200
parents
children 1868bd3565bf
line wrap: on
line source
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 deskriptor_umwelt database table.
 * 
 */
@Entity
@Table(name="deskriptor_umwelt")
public class DeskriptorUmwelt implements Serializable {
    private static final long serialVersionUID = 1L;

    @Id
    private Integer id;

    private Integer s00;

    private Integer s01;

    private Integer s02;

    private Integer s03;

    private Integer s04;

    private Integer s05;

    private Integer s06;

    private Integer s07;

    private Integer s08;

    private Integer s09;

    private Integer s10;

    private Integer s11;

    private Integer s12;

    @Column(name="umw_id")
    private String umwId;

    public DeskriptorUmwelt() {
    }

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

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

    public Integer getS00() {
        return this.s00;
    }

    public void setS00(Integer s00) {
        this.s00 = s00;
    }

    public Integer getS01() {
        return this.s01;
    }

    public void setS01(Integer s01) {
        this.s01 = s01;
    }

    public Integer getS02() {
        return this.s02;
    }

    public void setS02(Integer s02) {
        this.s02 = s02;
    }

    public Integer getS03() {
        return this.s03;
    }

    public void setS03(Integer s03) {
        this.s03 = s03;
    }

    public Integer getS04() {
        return this.s04;
    }

    public void setS04(Integer s04) {
        this.s04 = s04;
    }

    public Integer getS05() {
        return this.s05;
    }

    public void setS05(Integer s05) {
        this.s05 = s05;
    }

    public Integer getS06() {
        return this.s06;
    }

    public void setS06(Integer s06) {
        this.s06 = s06;
    }

    public Integer getS07() {
        return this.s07;
    }

    public void setS07(Integer s07) {
        this.s07 = s07;
    }

    public Integer getS08() {
        return this.s08;
    }

    public void setS08(Integer s08) {
        this.s08 = s08;
    }

    public Integer getS09() {
        return this.s09;
    }

    public void setS09(Integer s09) {
        this.s09 = s09;
    }

    public Integer getS10() {
        return this.s10;
    }

    public void setS10(Integer s10) {
        this.s10 = s10;
    }

    public Integer getS11() {
        return this.s11;
    }

    public void setS11(Integer s11) {
        this.s11 = s11;
    }

    public Integer getS12() {
        return this.s12;
    }

    public void setS12(Integer s12) {
        this.s12 = s12;
    }

    public String getUmwId() {
        return this.umwId;
    }

    public void setUmwId(String umwId) {
        this.umwId = umwId;
    }

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