comparison src/main/java/de/intevation/lada/model/stammdaten/MessMethode.java @ 1028:1c41c7b8f7c2 schema-update

Updated server application to new database model. THIS IS STILL WIP!!!
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 08 Jul 2016 15:32:36 +0200
parents
children
comparison
equal deleted inserted replaced
1027:9971471d562c 1028:1c41c7b8f7c2
1 package de.intevation.lada.model.stammdaten;
2
3 import java.io.Serializable;
4
5 import javax.persistence.Entity;
6 import javax.persistence.Id;
7 import javax.persistence.Table;
8
9
10 /**
11 * The persistent class for the mess_methode database table.
12 *
13 */
14 @Entity
15 @Table(name="mess_methode")
16 public class MessMethode implements Serializable {
17 private static final long serialVersionUID = 1L;
18
19 @Id
20 private String id;
21
22 private String beschreibung;
23
24 private String messmethode;
25
26 public MessMethode() {
27 }
28
29 public String getId() {
30 return this.id;
31 }
32
33 public void setId(String id) {
34 this.id = id;
35 }
36
37 public String getBeschreibung() {
38 return this.beschreibung;
39 }
40
41 public void setBeschreibung(String beschreibung) {
42 this.beschreibung = beschreibung;
43 }
44
45 public String getMessmethode() {
46 return this.messmethode;
47 }
48
49 public void setMessmethode(String messmethode) {
50 this.messmethode = messmethode;
51 }
52 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)