view src/main/java/de/intevation/lada/model/land/LOrtszuordnung.java @ 810:092e673cbb8d

Added and updated model, services, etc for to fit the new db schema.
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 03 Dec 2015 11:41:03 +0100
parents
children e49494d97437
line wrap: on
line source
package de.intevation.lada.model.land;

import java.sql.Timestamp;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;


/**
 * The persistent class for the ortszuordnung database table.
 */
@Entity
@Table(name="ortszuordnung")
public class LOrtszuordnung extends de.intevation.lada.model.Ortszuordnung {
    private static final long serialVersionUID = 1L;

    @Column(name="tree_modified")
    private Timestamp treeModified;

    public LOrtszuordnung() {
    }

    public Timestamp getTreeModified() {
        return this.treeModified;
    }

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