comparison flys-backend/src/main/java/de/intevation/flys/model/DischargeTableValue.java @ 167:15d515fe15f5

Added POJOs to be mapped to schema. flys-backend/trunk@1456 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 10 Mar 2011 13:44:51 +0000
parents
children 86a1bd9cc50e
comparison
equal deleted inserted replaced
166:56eb8f1b42cf 167:15d515fe15f5
1 package de.intevation.flys.model;
2
3 import java.math.BigDecimal;
4
5 import java.io.Serializable;
6
7 public class DischargeTableValue
8 implements Serializable
9 {
10 private Long id;
11 private DischargeTable dischargeTable;
12 private BigDecimal q;
13 private BigDecimal w;
14
15 public DischargeTableValue() {
16 }
17
18 public void setId(Long id) {
19 this.id = id;
20 }
21
22 public Long getId() {
23 return id;
24 }
25
26 public void setDischargeTable(DischargeTable dischargeTable) {
27 this.dischargeTable = dischargeTable;
28 }
29
30 public DischargeTable getDischargeTable() {
31 return dischargeTable;
32 }
33
34 public void setQ(BigDecimal q) {
35 this.q = q;
36 }
37
38 public BigDecimal getQ() {
39 return q;
40 }
41
42 public void setW(BigDecimal w) {
43 this.w = w;
44 }
45
46 public BigDecimal getW() {
47 return w;
48 }
49 }
50 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org