comparison 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
comparison
equal deleted inserted replaced
1269:3cdf75a9bf92 1270:6b3a551236ba
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
2 * Software engineering by Intevation GmbH
3 *
4 * This file is Free Software under the GNU GPL (v>=3)
5 * and comes with ABSOLUTELY NO WARRANTY! Check out
6 * the documentation coming with IMIS-Labordaten-Application for details.
7 */
1 package de.intevation.lada.model.stammdaten; 8 package de.intevation.lada.model.stammdaten;
2 9
3 import java.io.Serializable; 10 import java.io.Serializable;
4 11
5 import javax.persistence.Column; 12 import javax.persistence.Column;
21 private Integer id; 28 private Integer id;
22 29
23 @Column(name="ort_typ") 30 @Column(name="ort_typ")
24 private String ortTyp; 31 private String ortTyp;
25 32
33 @Column(name="code")
34 private String code;
35
26 public OrtTyp() { 36 public OrtTyp() {
27 } 37 }
28 38
29 public Integer getId() { 39 public Integer getId() {
30 return this.id; 40 return this.id;
40 50
41 public void setOrtTyp(String ortTyp) { 51 public void setOrtTyp(String ortTyp) {
42 this.ortTyp = ortTyp; 52 this.ortTyp = ortTyp;
43 } 53 }
44 54
55 public String getCode() {
56 return this.code;
57 }
58
59 public void setCode(String code) {
60 this.code = code;
61 }
45 } 62 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)