comparison src/main/java/de/intevation/lada/model/stammdaten/MessStelle.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.Column;
6 import javax.persistence.Entity;
7 import javax.persistence.Id;
8 import javax.persistence.Table;
9
10
11 /**
12 * The persistent class for the mess_stelle database table.
13 *
14 */
15 @Entity
16 @Table(name="mess_stelle")
17 public class MessStelle implements Serializable {
18 private static final long serialVersionUID = 1L;
19
20 @Id
21 private String id;
22
23 private String amtskennung;
24
25 private String beschreibung;
26
27 @Column(name="mess_stelle")
28 private String messStelle;
29
30 @Column(name="mst_typ")
31 private String mstTyp;
32
33 @Column(name="netzbetreiber_id")
34 private String netzbetreiberId;
35
36 public MessStelle() {
37 }
38
39 public String getId() {
40 return this.id;
41 }
42
43 public void setId(String id) {
44 this.id = id;
45 }
46
47 public String getAmtskennung() {
48 return this.amtskennung;
49 }
50
51 public void setAmtskennung(String amtskennung) {
52 this.amtskennung = amtskennung;
53 }
54
55 public String getBeschreibung() {
56 return this.beschreibung;
57 }
58
59 public void setBeschreibung(String beschreibung) {
60 this.beschreibung = beschreibung;
61 }
62
63 public String getMessStelle() {
64 return this.messStelle;
65 }
66
67 public void setMessStelle(String messStelle) {
68 this.messStelle = messStelle;
69 }
70
71 public String getMstTyp() {
72 return this.mstTyp;
73 }
74
75 public void setMstTyp(String mstTyp) {
76 this.mstTyp = mstTyp;
77 }
78
79 public String getNetzbetreiberId() {
80 return this.netzbetreiberId;
81 }
82 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)