view src/main/java/de/intevation/lada/model/land/LZusatzWert.java @ 592:519fcf6e738c

Added new column 'tree_modified' to entity classes.
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 25 Mar 2015 16:16:33 +0100
parents 7fbf0246012c
children 8d238aa430e3
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.land;

import java.sql.Timestamp;

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


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

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

    public Timestamp getTreeModified() {
        return treeModified;
    }

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