Mercurial > dive4elements > river
comparison flys-backend/src/main/java/de/intevation/seddb/model/Hpeilung.java @ 3689:c938e568c4a2 2.9
merged flys-backend/2.9
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:44 +0200 |
parents | 2ae732e2c65c |
children | 18619c1e7c2a |
comparison
equal
deleted
inserted
replaced
3651:06a65baae494 | 3689:c938e568c4a2 |
---|---|
1 package de.intevation.seddb.model; | |
2 // Generated 14.06.2012 11:30:57 by Hibernate Tools 3.4.0.CR1 | |
3 | |
4 | |
5 import java.math.BigDecimal; | |
6 import java.util.Date; | |
7 import java.util.HashSet; | |
8 import java.util.Set; | |
9 import javax.persistence.Column; | |
10 import javax.persistence.Entity; | |
11 import javax.persistence.FetchType; | |
12 import javax.persistence.Id; | |
13 import javax.persistence.JoinColumn; | |
14 import javax.persistence.ManyToOne; | |
15 import javax.persistence.OneToMany; | |
16 import javax.persistence.Table; | |
17 import javax.persistence.Temporal; | |
18 import javax.persistence.TemporalType; | |
19 | |
20 /** | |
21 * Hpeilung generated by hbm2java | |
22 */ | |
23 @Entity | |
24 @Table(name="HPEILUNG" | |
25 ,schema="SEDDB" | |
26 ) | |
27 public class Hpeilung implements java.io.Serializable { | |
28 | |
29 | |
30 private long hpeilungid; | |
31 private Station station; | |
32 private BigDecimal km; | |
33 private Date datum; | |
34 private String glwname; | |
35 private BigDecimal glwhoehe; | |
36 private BigDecimal buliabst; | |
37 private BigDecimal bulihoehe; | |
38 private BigDecimal bulifuss; | |
39 private BigDecimal buliruecken; | |
40 private BigDecimal bureabst; | |
41 private BigDecimal burehoehe; | |
42 private BigDecimal burefuss; | |
43 private BigDecimal bureruecken; | |
44 private BigDecimal fahrliabst; | |
45 private BigDecimal fahrreabst; | |
46 private BigDecimal fahrtief; | |
47 private BigDecimal ausbliabst; | |
48 private BigDecimal ausbreabst; | |
49 private BigDecimal achseabst; | |
50 private BigDecimal teilvonabst; | |
51 private BigDecimal teilbisabst; | |
52 private BigDecimal hmabst; | |
53 private BigDecimal lgkrechts; | |
54 private BigDecimal lgkhoch; | |
55 private BigDecimal lgkhoehe; | |
56 private BigDecimal rgkrechts; | |
57 private BigDecimal rgkhoch; | |
58 private BigDecimal rgkhoehe; | |
59 private String bemerkung; | |
60 private Date lastupdated; | |
61 private Long oldprfid; | |
62 private BigDecimal mitteabst; | |
63 private Set<Hpeilpunkt> hpeilpunkts = new HashSet<Hpeilpunkt>(0); | |
64 private Set<Messung> messungs = new HashSet<Messung>(0); | |
65 | |
66 public Hpeilung() { | |
67 } | |
68 | |
69 public Hpeilung(long hpeilungid, Station station, BigDecimal km, Date datum, Date lastupdated) { | |
70 this.hpeilungid = hpeilungid; | |
71 this.station = station; | |
72 this.km = km; | |
73 this.datum = datum; | |
74 this.lastupdated = lastupdated; | |
75 } | |
76 public Hpeilung(long hpeilungid, Station station, BigDecimal km, Date datum, String glwname, BigDecimal glwhoehe, BigDecimal buliabst, BigDecimal bulihoehe, BigDecimal bulifuss, BigDecimal buliruecken, BigDecimal bureabst, BigDecimal burehoehe, BigDecimal burefuss, BigDecimal bureruecken, BigDecimal fahrliabst, BigDecimal fahrreabst, BigDecimal fahrtief, BigDecimal ausbliabst, BigDecimal ausbreabst, BigDecimal achseabst, BigDecimal teilvonabst, BigDecimal teilbisabst, BigDecimal hmabst, BigDecimal lgkrechts, BigDecimal lgkhoch, BigDecimal lgkhoehe, BigDecimal rgkrechts, BigDecimal rgkhoch, BigDecimal rgkhoehe, String bemerkung, Date lastupdated, Long oldprfid, BigDecimal mitteabst, Set<Hpeilpunkt> hpeilpunkts, Set<Messung> messungs) { | |
77 this.hpeilungid = hpeilungid; | |
78 this.station = station; | |
79 this.km = km; | |
80 this.datum = datum; | |
81 this.glwname = glwname; | |
82 this.glwhoehe = glwhoehe; | |
83 this.buliabst = buliabst; | |
84 this.bulihoehe = bulihoehe; | |
85 this.bulifuss = bulifuss; | |
86 this.buliruecken = buliruecken; | |
87 this.bureabst = bureabst; | |
88 this.burehoehe = burehoehe; | |
89 this.burefuss = burefuss; | |
90 this.bureruecken = bureruecken; | |
91 this.fahrliabst = fahrliabst; | |
92 this.fahrreabst = fahrreabst; | |
93 this.fahrtief = fahrtief; | |
94 this.ausbliabst = ausbliabst; | |
95 this.ausbreabst = ausbreabst; | |
96 this.achseabst = achseabst; | |
97 this.teilvonabst = teilvonabst; | |
98 this.teilbisabst = teilbisabst; | |
99 this.hmabst = hmabst; | |
100 this.lgkrechts = lgkrechts; | |
101 this.lgkhoch = lgkhoch; | |
102 this.lgkhoehe = lgkhoehe; | |
103 this.rgkrechts = rgkrechts; | |
104 this.rgkhoch = rgkhoch; | |
105 this.rgkhoehe = rgkhoehe; | |
106 this.bemerkung = bemerkung; | |
107 this.lastupdated = lastupdated; | |
108 this.oldprfid = oldprfid; | |
109 this.mitteabst = mitteabst; | |
110 this.hpeilpunkts = hpeilpunkts; | |
111 this.messungs = messungs; | |
112 } | |
113 | |
114 @Id | |
115 | |
116 | |
117 @Column(name="HPEILUNGID", unique=true, nullable=false, precision=11, scale=0) | |
118 public long getHpeilungid() { | |
119 return this.hpeilungid; | |
120 } | |
121 | |
122 public void setHpeilungid(long hpeilungid) { | |
123 this.hpeilungid = hpeilungid; | |
124 } | |
125 | |
126 @ManyToOne(fetch=FetchType.LAZY) | |
127 @JoinColumn(name="STATIONID", nullable=false) | |
128 public Station getStation() { | |
129 return this.station; | |
130 } | |
131 | |
132 public void setStation(Station station) { | |
133 this.station = station; | |
134 } | |
135 | |
136 | |
137 @Column(name="KM", nullable=false, precision=8, scale=3) | |
138 public BigDecimal getKm() { | |
139 return this.km; | |
140 } | |
141 | |
142 public void setKm(BigDecimal km) { | |
143 this.km = km; | |
144 } | |
145 | |
146 @Temporal(TemporalType.DATE) | |
147 @Column(name="DATUM", nullable=false, length=7) | |
148 public Date getDatum() { | |
149 return this.datum; | |
150 } | |
151 | |
152 public void setDatum(Date datum) { | |
153 this.datum = datum; | |
154 } | |
155 | |
156 | |
157 @Column(name="GLWNAME", length=8) | |
158 public String getGlwname() { | |
159 return this.glwname; | |
160 } | |
161 | |
162 public void setGlwname(String glwname) { | |
163 this.glwname = glwname; | |
164 } | |
165 | |
166 | |
167 @Column(name="GLWHOEHE", precision=8, scale=3) | |
168 public BigDecimal getGlwhoehe() { | |
169 return this.glwhoehe; | |
170 } | |
171 | |
172 public void setGlwhoehe(BigDecimal glwhoehe) { | |
173 this.glwhoehe = glwhoehe; | |
174 } | |
175 | |
176 | |
177 @Column(name="BULIABST", precision=8, scale=3) | |
178 public BigDecimal getBuliabst() { | |
179 return this.buliabst; | |
180 } | |
181 | |
182 public void setBuliabst(BigDecimal buliabst) { | |
183 this.buliabst = buliabst; | |
184 } | |
185 | |
186 | |
187 @Column(name="BULIHOEHE", precision=8, scale=3) | |
188 public BigDecimal getBulihoehe() { | |
189 return this.bulihoehe; | |
190 } | |
191 | |
192 public void setBulihoehe(BigDecimal bulihoehe) { | |
193 this.bulihoehe = bulihoehe; | |
194 } | |
195 | |
196 | |
197 @Column(name="BULIFUSS", precision=8, scale=3) | |
198 public BigDecimal getBulifuss() { | |
199 return this.bulifuss; | |
200 } | |
201 | |
202 public void setBulifuss(BigDecimal bulifuss) { | |
203 this.bulifuss = bulifuss; | |
204 } | |
205 | |
206 | |
207 @Column(name="BULIRUECKEN", precision=8, scale=3) | |
208 public BigDecimal getBuliruecken() { | |
209 return this.buliruecken; | |
210 } | |
211 | |
212 public void setBuliruecken(BigDecimal buliruecken) { | |
213 this.buliruecken = buliruecken; | |
214 } | |
215 | |
216 | |
217 @Column(name="BUREABST", precision=8, scale=3) | |
218 public BigDecimal getBureabst() { | |
219 return this.bureabst; | |
220 } | |
221 | |
222 public void setBureabst(BigDecimal bureabst) { | |
223 this.bureabst = bureabst; | |
224 } | |
225 | |
226 | |
227 @Column(name="BUREHOEHE", precision=8, scale=3) | |
228 public BigDecimal getBurehoehe() { | |
229 return this.burehoehe; | |
230 } | |
231 | |
232 public void setBurehoehe(BigDecimal burehoehe) { | |
233 this.burehoehe = burehoehe; | |
234 } | |
235 | |
236 | |
237 @Column(name="BUREFUSS", precision=8, scale=3) | |
238 public BigDecimal getBurefuss() { | |
239 return this.burefuss; | |
240 } | |
241 | |
242 public void setBurefuss(BigDecimal burefuss) { | |
243 this.burefuss = burefuss; | |
244 } | |
245 | |
246 | |
247 @Column(name="BURERUECKEN", precision=8, scale=3) | |
248 public BigDecimal getBureruecken() { | |
249 return this.bureruecken; | |
250 } | |
251 | |
252 public void setBureruecken(BigDecimal bureruecken) { | |
253 this.bureruecken = bureruecken; | |
254 } | |
255 | |
256 | |
257 @Column(name="FAHRLIABST", precision=8, scale=3) | |
258 public BigDecimal getFahrliabst() { | |
259 return this.fahrliabst; | |
260 } | |
261 | |
262 public void setFahrliabst(BigDecimal fahrliabst) { | |
263 this.fahrliabst = fahrliabst; | |
264 } | |
265 | |
266 | |
267 @Column(name="FAHRREABST", precision=8, scale=3) | |
268 public BigDecimal getFahrreabst() { | |
269 return this.fahrreabst; | |
270 } | |
271 | |
272 public void setFahrreabst(BigDecimal fahrreabst) { | |
273 this.fahrreabst = fahrreabst; | |
274 } | |
275 | |
276 | |
277 @Column(name="FAHRTIEF", precision=8, scale=3) | |
278 public BigDecimal getFahrtief() { | |
279 return this.fahrtief; | |
280 } | |
281 | |
282 public void setFahrtief(BigDecimal fahrtief) { | |
283 this.fahrtief = fahrtief; | |
284 } | |
285 | |
286 | |
287 @Column(name="AUSBLIABST", precision=8, scale=3) | |
288 public BigDecimal getAusbliabst() { | |
289 return this.ausbliabst; | |
290 } | |
291 | |
292 public void setAusbliabst(BigDecimal ausbliabst) { | |
293 this.ausbliabst = ausbliabst; | |
294 } | |
295 | |
296 | |
297 @Column(name="AUSBREABST", precision=8, scale=3) | |
298 public BigDecimal getAusbreabst() { | |
299 return this.ausbreabst; | |
300 } | |
301 | |
302 public void setAusbreabst(BigDecimal ausbreabst) { | |
303 this.ausbreabst = ausbreabst; | |
304 } | |
305 | |
306 | |
307 @Column(name="ACHSEABST", precision=8, scale=3) | |
308 public BigDecimal getAchseabst() { | |
309 return this.achseabst; | |
310 } | |
311 | |
312 public void setAchseabst(BigDecimal achseabst) { | |
313 this.achseabst = achseabst; | |
314 } | |
315 | |
316 | |
317 @Column(name="TEILVONABST", precision=8, scale=3) | |
318 public BigDecimal getTeilvonabst() { | |
319 return this.teilvonabst; | |
320 } | |
321 | |
322 public void setTeilvonabst(BigDecimal teilvonabst) { | |
323 this.teilvonabst = teilvonabst; | |
324 } | |
325 | |
326 | |
327 @Column(name="TEILBISABST", precision=8, scale=3) | |
328 public BigDecimal getTeilbisabst() { | |
329 return this.teilbisabst; | |
330 } | |
331 | |
332 public void setTeilbisabst(BigDecimal teilbisabst) { | |
333 this.teilbisabst = teilbisabst; | |
334 } | |
335 | |
336 | |
337 @Column(name="HMABST", precision=8, scale=3) | |
338 public BigDecimal getHmabst() { | |
339 return this.hmabst; | |
340 } | |
341 | |
342 public void setHmabst(BigDecimal hmabst) { | |
343 this.hmabst = hmabst; | |
344 } | |
345 | |
346 | |
347 @Column(name="LGKRECHTS", precision=11, scale=3) | |
348 public BigDecimal getLgkrechts() { | |
349 return this.lgkrechts; | |
350 } | |
351 | |
352 public void setLgkrechts(BigDecimal lgkrechts) { | |
353 this.lgkrechts = lgkrechts; | |
354 } | |
355 | |
356 | |
357 @Column(name="LGKHOCH", precision=11, scale=3) | |
358 public BigDecimal getLgkhoch() { | |
359 return this.lgkhoch; | |
360 } | |
361 | |
362 public void setLgkhoch(BigDecimal lgkhoch) { | |
363 this.lgkhoch = lgkhoch; | |
364 } | |
365 | |
366 | |
367 @Column(name="LGKHOEHE", precision=8, scale=3) | |
368 public BigDecimal getLgkhoehe() { | |
369 return this.lgkhoehe; | |
370 } | |
371 | |
372 public void setLgkhoehe(BigDecimal lgkhoehe) { | |
373 this.lgkhoehe = lgkhoehe; | |
374 } | |
375 | |
376 | |
377 @Column(name="RGKRECHTS", precision=11, scale=3) | |
378 public BigDecimal getRgkrechts() { | |
379 return this.rgkrechts; | |
380 } | |
381 | |
382 public void setRgkrechts(BigDecimal rgkrechts) { | |
383 this.rgkrechts = rgkrechts; | |
384 } | |
385 | |
386 | |
387 @Column(name="RGKHOCH", precision=11, scale=3) | |
388 public BigDecimal getRgkhoch() { | |
389 return this.rgkhoch; | |
390 } | |
391 | |
392 public void setRgkhoch(BigDecimal rgkhoch) { | |
393 this.rgkhoch = rgkhoch; | |
394 } | |
395 | |
396 | |
397 @Column(name="RGKHOEHE", precision=8, scale=3) | |
398 public BigDecimal getRgkhoehe() { | |
399 return this.rgkhoehe; | |
400 } | |
401 | |
402 public void setRgkhoehe(BigDecimal rgkhoehe) { | |
403 this.rgkhoehe = rgkhoehe; | |
404 } | |
405 | |
406 | |
407 @Column(name="BEMERKUNG", length=240) | |
408 public String getBemerkung() { | |
409 return this.bemerkung; | |
410 } | |
411 | |
412 public void setBemerkung(String bemerkung) { | |
413 this.bemerkung = bemerkung; | |
414 } | |
415 | |
416 @Temporal(TemporalType.DATE) | |
417 @Column(name="LASTUPDATED", nullable=false, length=7) | |
418 public Date getLastupdated() { | |
419 return this.lastupdated; | |
420 } | |
421 | |
422 public void setLastupdated(Date lastupdated) { | |
423 this.lastupdated = lastupdated; | |
424 } | |
425 | |
426 | |
427 @Column(name="OLDPRFID", precision=11, scale=0) | |
428 public Long getOldprfid() { | |
429 return this.oldprfid; | |
430 } | |
431 | |
432 public void setOldprfid(Long oldprfid) { | |
433 this.oldprfid = oldprfid; | |
434 } | |
435 | |
436 | |
437 @Column(name="MITTEABST", precision=8, scale=3) | |
438 public BigDecimal getMitteabst() { | |
439 return this.mitteabst; | |
440 } | |
441 | |
442 public void setMitteabst(BigDecimal mitteabst) { | |
443 this.mitteabst = mitteabst; | |
444 } | |
445 | |
446 @OneToMany(fetch=FetchType.LAZY, mappedBy="hpeilung") | |
447 public Set<Hpeilpunkt> getHpeilpunkts() { | |
448 return this.hpeilpunkts; | |
449 } | |
450 | |
451 public void setHpeilpunkts(Set<Hpeilpunkt> hpeilpunkts) { | |
452 this.hpeilpunkts = hpeilpunkts; | |
453 } | |
454 | |
455 @OneToMany(fetch=FetchType.LAZY, mappedBy="hpeilung") | |
456 public Set<Messung> getMessungs() { | |
457 return this.messungs; | |
458 } | |
459 | |
460 public void setMessungs(Set<Messung> messungs) { | |
461 this.messungs = messungs; | |
462 } | |
463 } |