changeset 163:b4bc655685aa

Added staatId and gemId
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 18 Jun 2013 13:21:03 +0200
parents c217a12935a7
children c85743232d75
files src/main/java/de/intevation/lada/model/Ort.java
diffstat 1 files changed, 24 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/de/intevation/lada/model/Ort.java	Fri Jun 14 17:30:13 2013 +0200
+++ b/src/main/java/de/intevation/lada/model/Ort.java	Tue Jun 18 13:21:03 2013 +0200
@@ -36,6 +36,8 @@
 	private Date letzteAenderung;
 	private Double latitude;
 	private Double longitude;
+    private int staatId;
+    private String gemId;
 
 	public Ort() {
 	}
@@ -47,7 +49,8 @@
 	public Ort(int ortId,  String OTyp, String bezeichnung,
 			String beschreibung, Character unscharf, String nutsCode,
 			String koordXExtern, String koordYExtern, Float hoeheLand,
-			Date letzteAenderung, Double latitude, Double longitude) {
+			Date letzteAenderung, Double latitude, Double longitude,
+            int staatId, String gemId) {
 		this.ortId = ortId;
 		this.OTyp = OTyp;
 		this.bezeichnung = bezeichnung;
@@ -60,6 +63,8 @@
 		this.letzteAenderung = letzteAenderung;
 		this.latitude = latitude;
 		this.longitude = longitude;
+        this.staatId = staatId;
+        this.gemId = gemId;
 	}
 
 	@Id
@@ -171,4 +176,22 @@
 	public void setLongitude(Double longitude) {
 		this.longitude = longitude;
 	}
+
+    @Column(name = "gem_id")
+    public String getGemId() {
+        return this.gemId;
+    }
+
+    public void setGemId(String gemId) {
+        this.gemId= gemId;
+    }
+
+    @Column(name = "staat_id")
+    public int getStaatId() {
+        return this.staatId;
+    }
+
+    public void setStaatId(int staatId) {
+        this.staatId= staatId;
+    }
 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)