diff src/main/java/de/intevation/lada/model/stammdaten/OrtTyp.java @ 1270:6b3a551236ba

Updated stammdaten data types.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 27 Jan 2017 17:07:43 +0100
parents 186d602e031a
children
line wrap: on
line diff
--- a/src/main/java/de/intevation/lada/model/stammdaten/OrtTyp.java	Fri Jan 27 16:12:52 2017 +0100
+++ b/src/main/java/de/intevation/lada/model/stammdaten/OrtTyp.java	Fri Jan 27 17:07:43 2017 +0100
@@ -1,3 +1,10 @@
+/* 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.stammdaten;
 
 import java.io.Serializable;
@@ -23,6 +30,9 @@
     @Column(name="ort_typ")
     private String ortTyp;
 
+    @Column(name="code")
+    private String code;
+
     public OrtTyp() {
     }
 
@@ -42,4 +52,11 @@
         this.ortTyp = ortTyp;
     }
 
+    public String getCode() {
+        return this.code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)