comparison flys-backend/src/main/java/de/intevation/seddb/model/Slotrechte.java @ 3334:2ae732e2c65c

FLYS backend: Removed trailing whitespace. flys-backend/trunk@4669 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 15 Jun 2012 09:20:49 +0000
parents aa8ed778c8cc
children 18619c1e7c2a
comparison
equal deleted inserted replaced
3333:76c75c8b9ee0 3334:2ae732e2c65c
57 this.vsohle = vsohle; 57 this.vsohle = vsohle;
58 this.bemerkung = bemerkung; 58 this.bemerkung = bemerkung;
59 this.uferablinks = uferablinks; 59 this.uferablinks = uferablinks;
60 this.sprobes = sprobes; 60 this.sprobes = sprobes;
61 } 61 }
62
63 @Id
64 62
65 63 @Id
64
65
66 @Column(name="SLOTRECHTEID", unique=true, nullable=false, precision=11, scale=0) 66 @Column(name="SLOTRECHTEID", unique=true, nullable=false, precision=11, scale=0)
67 public long getSlotrechteid() { 67 public long getSlotrechteid() {
68 return this.slotrechteid; 68 return this.slotrechteid;
69 } 69 }
70 70
71 public void setSlotrechteid(long slotrechteid) { 71 public void setSlotrechteid(long slotrechteid) {
72 this.slotrechteid = slotrechteid; 72 this.slotrechteid = slotrechteid;
73 } 73 }
74 74
75 @ManyToOne(fetch=FetchType.LAZY) 75 @ManyToOne(fetch=FetchType.LAZY)
76 @JoinColumn(name="MESSUNGID", nullable=false) 76 @JoinColumn(name="MESSUNGID", nullable=false)
77 public Messung getMessung() { 77 public Messung getMessung() {
78 return this.messung; 78 return this.messung;
79 } 79 }
80 80
81 public void setMessung(Messung messung) { 81 public void setMessung(Messung messung) {
82 this.messung = messung; 82 this.messung = messung;
83 } 83 }
84 84
85 85
86 @Column(name="UFERABST", nullable=false, precision=8, scale=3) 86 @Column(name="UFERABST", nullable=false, precision=8, scale=3)
87 public BigDecimal getUferabst() { 87 public BigDecimal getUferabst() {
88 return this.uferabst; 88 return this.uferabst;
89 } 89 }
90 90
91 public void setUferabst(BigDecimal uferabst) { 91 public void setUferabst(BigDecimal uferabst) {
92 this.uferabst = uferabst; 92 this.uferabst = uferabst;
93 } 93 }
94 94
95 95
96 @Column(name="TSAND", precision=8, scale=3) 96 @Column(name="TSAND", precision=8, scale=3)
97 public BigDecimal getTsand() { 97 public BigDecimal getTsand() {
98 return this.tsand; 98 return this.tsand;
99 } 99 }
100 100
101 public void setTsand(BigDecimal tsand) { 101 public void setTsand(BigDecimal tsand) {
102 this.tsand = tsand; 102 this.tsand = tsand;
103 } 103 }
104 104
105 105
106 @Column(name="TSCHWEB", precision=8, scale=3) 106 @Column(name="TSCHWEB", precision=8, scale=3)
107 public BigDecimal getTschweb() { 107 public BigDecimal getTschweb() {
108 return this.tschweb; 108 return this.tschweb;
109 } 109 }
110 110
111 public void setTschweb(BigDecimal tschweb) { 111 public void setTschweb(BigDecimal tschweb) {
112 this.tschweb = tschweb; 112 this.tschweb = tschweb;
113 } 113 }
114 114
115 115
116 @Column(name="FV", precision=6, scale=3) 116 @Column(name="FV", precision=6, scale=3)
117 public BigDecimal getFv() { 117 public BigDecimal getFv() {
118 return this.fv; 118 return this.fv;
119 } 119 }
120 120
121 public void setFv(BigDecimal fv) { 121 public void setFv(BigDecimal fv) {
122 this.fv = fv; 122 this.fv = fv;
123 } 123 }
124 124
125 125
126 @Column(name="VM", precision=6, scale=4) 126 @Column(name="VM", precision=6, scale=4)
127 public BigDecimal getVm() { 127 public BigDecimal getVm() {
128 return this.vm; 128 return this.vm;
129 } 129 }
130 130
131 public void setVm(BigDecimal vm) { 131 public void setVm(BigDecimal vm) {
132 this.vm = vm; 132 this.vm = vm;
133 } 133 }
134 134
135 135
136 @Column(name="TIEFE", precision=8, scale=3) 136 @Column(name="TIEFE", precision=8, scale=3)
137 public BigDecimal getTiefe() { 137 public BigDecimal getTiefe() {
138 return this.tiefe; 138 return this.tiefe;
139 } 139 }
140 140
141 public void setTiefe(BigDecimal tiefe) { 141 public void setTiefe(BigDecimal tiefe) {
142 this.tiefe = tiefe; 142 this.tiefe = tiefe;
143 } 143 }
144 144
145 145
146 @Column(name="VSOHLE", precision=6, scale=4) 146 @Column(name="VSOHLE", precision=6, scale=4)
147 public BigDecimal getVsohle() { 147 public BigDecimal getVsohle() {
148 return this.vsohle; 148 return this.vsohle;
149 } 149 }
150 150
151 public void setVsohle(BigDecimal vsohle) { 151 public void setVsohle(BigDecimal vsohle) {
152 this.vsohle = vsohle; 152 this.vsohle = vsohle;
153 } 153 }
154 154
155 155
156 @Column(name="BEMERKUNG", length=240) 156 @Column(name="BEMERKUNG", length=240)
157 public String getBemerkung() { 157 public String getBemerkung() {
158 return this.bemerkung; 158 return this.bemerkung;
159 } 159 }
160 160
161 public void setBemerkung(String bemerkung) { 161 public void setBemerkung(String bemerkung) {
162 this.bemerkung = bemerkung; 162 this.bemerkung = bemerkung;
163 } 163 }
164 164
165 165
166 @Column(name="UFERABLINKS", precision=8, scale=3) 166 @Column(name="UFERABLINKS", precision=8, scale=3)
167 public BigDecimal getUferablinks() { 167 public BigDecimal getUferablinks() {
168 return this.uferablinks; 168 return this.uferablinks;
169 } 169 }
170 170
171 public void setUferablinks(BigDecimal uferablinks) { 171 public void setUferablinks(BigDecimal uferablinks) {
172 this.uferablinks = uferablinks; 172 this.uferablinks = uferablinks;
173 } 173 }
174 174
175 @OneToMany(fetch=FetchType.LAZY, mappedBy="slotrechte") 175 @OneToMany(fetch=FetchType.LAZY, mappedBy="slotrechte")
176 public Set<Sprobe> getSprobes() { 176 public Set<Sprobe> getSprobes() {
177 return this.sprobes; 177 return this.sprobes;
178 } 178 }
179 179
180 public void setSprobes(Set<Sprobe> sprobes) { 180 public void setSprobes(Set<Sprobe> sprobes) {
181 this.sprobes = sprobes; 181 this.sprobes = sprobes;
182 } 182 }
183 } 183 }

http://dive4elements.wald.intevation.org