comparison src/main/java/de/intevation/lada/model/stammdaten/DeskriptorUmwelt.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 1868bd3565bf
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 deskriptor_umwelt database table.
13 *
14 */
15 @Entity
16 @Table(name="deskriptor_umwelt")
17 public class DeskriptorUmwelt implements Serializable {
18 private static final long serialVersionUID = 1L;
19
20 @Id
21 private Integer id;
22
23 private Integer s00;
24
25 private Integer s01;
26
27 private Integer s02;
28
29 private Integer s03;
30
31 private Integer s04;
32
33 private Integer s05;
34
35 private Integer s06;
36
37 private Integer s07;
38
39 private Integer s08;
40
41 private Integer s09;
42
43 private Integer s10;
44
45 private Integer s11;
46
47 private Integer s12;
48
49 @Column(name="umw_id")
50 private String umwId;
51
52 public DeskriptorUmwelt() {
53 }
54
55 public Integer getId() {
56 return this.id;
57 }
58
59 public void setId(Integer id) {
60 this.id = id;
61 }
62
63 public Integer getS00() {
64 return this.s00;
65 }
66
67 public void setS00(Integer s00) {
68 this.s00 = s00;
69 }
70
71 public Integer getS01() {
72 return this.s01;
73 }
74
75 public void setS01(Integer s01) {
76 this.s01 = s01;
77 }
78
79 public Integer getS02() {
80 return this.s02;
81 }
82
83 public void setS02(Integer s02) {
84 this.s02 = s02;
85 }
86
87 public Integer getS03() {
88 return this.s03;
89 }
90
91 public void setS03(Integer s03) {
92 this.s03 = s03;
93 }
94
95 public Integer getS04() {
96 return this.s04;
97 }
98
99 public void setS04(Integer s04) {
100 this.s04 = s04;
101 }
102
103 public Integer getS05() {
104 return this.s05;
105 }
106
107 public void setS05(Integer s05) {
108 this.s05 = s05;
109 }
110
111 public Integer getS06() {
112 return this.s06;
113 }
114
115 public void setS06(Integer s06) {
116 this.s06 = s06;
117 }
118
119 public Integer getS07() {
120 return this.s07;
121 }
122
123 public void setS07(Integer s07) {
124 this.s07 = s07;
125 }
126
127 public Integer getS08() {
128 return this.s08;
129 }
130
131 public void setS08(Integer s08) {
132 this.s08 = s08;
133 }
134
135 public Integer getS09() {
136 return this.s09;
137 }
138
139 public void setS09(Integer s09) {
140 this.s09 = s09;
141 }
142
143 public Integer getS10() {
144 return this.s10;
145 }
146
147 public void setS10(Integer s10) {
148 this.s10 = s10;
149 }
150
151 public Integer getS11() {
152 return this.s11;
153 }
154
155 public void setS11(Integer s11) {
156 this.s11 = s11;
157 }
158
159 public Integer getS12() {
160 return this.s12;
161 }
162
163 public void setS12(Integer s12) {
164 this.s12 = s12;
165 }
166
167 public String getUmwId() {
168 return this.umwId;
169 }
170
171 public void setUmwId(String umwId) {
172 this.umwId = umwId;
173 }
174
175 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)