comparison 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
comparison
equal deleted inserted replaced
809:c77b340db5fe 810:092e673cbb8d
1 package de.intevation.lada.model.land;
2
3 import java.sql.Timestamp;
4
5 import javax.persistence.Column;
6 import javax.persistence.Entity;
7 import javax.persistence.Table;
8
9
10 /**
11 * The persistent class for the ortszuordnung database table.
12 */
13 @Entity
14 @Table(name="ortszuordnung")
15 public class LOrtszuordnung extends de.intevation.lada.model.Ortszuordnung {
16 private static final long serialVersionUID = 1L;
17
18 @Column(name="tree_modified")
19 private Timestamp treeModified;
20
21 public LOrtszuordnung() {
22 }
23
24 public Timestamp getTreeModified() {
25 return this.treeModified;
26 }
27
28 public void setTreeModified(Timestamp treeModified) {
29 this.treeModified = treeModified;
30 }
31 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)