comparison src/main/java/de/intevation/lada/model/land/Messprogramm.java @ 1038:6f9983f68248 schema-update

Fixed model and its dependencies.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 02 Sep 2016 14:02:03 +0200
parents 1c41c7b8f7c2
children
comparison
equal deleted inserted replaced
1037:cd16a41ca3ab 1038:6f9983f68248
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.land; 8 package de.intevation.lada.model.land;
2 9
3 import java.io.Serializable; 10 import java.io.Serializable;
4 import java.sql.Timestamp; 11 import java.sql.Timestamp;
5 12
21 @Id 28 @Id
22 @GeneratedValue(strategy=GenerationType.IDENTITY) 29 @GeneratedValue(strategy=GenerationType.IDENTITY)
23 private Integer id; 30 private Integer id;
24 31
25 @Column(name="ba_id") 32 @Column(name="ba_id")
26 private String baId; 33 private Integer baId;
27 34
28 @Column(name="datenbasis_id") 35 @Column(name="datenbasis_id")
29 private Integer datenbasisId; 36 private Integer datenbasisId;
30 37
31 @Column(name="gem_id") 38 @Column(name="gem_id")
88 95
89 public void setId(Integer id) { 96 public void setId(Integer id) {
90 this.id = id; 97 this.id = id;
91 } 98 }
92 99
93 public String getBaId() { 100 public Integer getBaId() {
94 return this.baId; 101 return this.baId;
95 } 102 }
96 103
97 public void setBaId(String baId) { 104 public void setBaId(Integer baId) {
98 this.baId = baId; 105 this.baId = baId;
99 } 106 }
100 107
101 public Integer getDatenbasisId() { 108 public Integer getDatenbasisId() {
102 return this.datenbasisId; 109 return this.datenbasisId;
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)