diff src/main/java/de/intevation/lada/model/stammdaten/Verwaltungsgrenze.java @ 1194:289edf060550

Removed table de_vg and added verwaltungsgrenze.
author Raimund Renkert <raimund.renkert@intevation.de>
date Tue, 29 Nov 2016 15:57:09 +0100
parents
children b8e8dcdcc595
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/java/de/intevation/lada/model/stammdaten/Verwaltungsgrenze.java	Tue Nov 29 15:57:09 2016 +0100
@@ -0,0 +1,57 @@
+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;
+
+import com.vividsolutions.jts.geom.MultiPolygon;
+
+
+/**
+ * The persistent class for the verwaltungsgrenze database table.
+ * 
+ */
+@Entity
+@Table(name="verwaltungsgrenze")
+public class Verwaltungsgrenze implements Serializable {
+	private static final long serialVersionUID = 1L;
+
+	@Id
+	private Integer id;
+
+	@Column(name="gem_id")
+	private String gemId;
+
+	private MultiPolygon shape;
+
+	public Verwaltungsgrenze() {
+	}
+
+	public Integer getId() {
+		return this.id;
+	}
+
+	public void setId(Integer id) {
+		this.id = id;
+	}
+
+	public String getGemId() {
+		return this.gemId;
+	}
+
+	public void setGemId(String gemId) {
+		this.gemId = gemId;
+	}
+
+	public MultiPolygon getShape() {
+		return this.shape;
+	}
+
+	public void setShape(MultiPolygon shape) {
+		this.shape = shape;
+	}
+
+}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)