comparison src/main/java/de/intevation/lada/model/KommentarM.java @ 556:4017d2c8dd24

Renamed all 'messungId' url parameters to 'messungsId'.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 13 Mar 2015 16:42:12 +0100
parents 7a3d669fa1d6
children 4f83f2fc188a
comparison
equal deleted inserted replaced
543:7a0e3d49ae33 556:4017d2c8dd24
25 @Table(name="kommentar_m") 25 @Table(name="kommentar_m")
26 public class KommentarM implements Serializable { 26 public class KommentarM implements Serializable {
27 private static final long serialVersionUID = 1L; 27 private static final long serialVersionUID = 1L;
28 28
29 @Column(name="messungs_id") 29 @Column(name="messungs_id")
30 private Integer messungId; 30 private Integer messungsId;
31 31
32 private Timestamp datum; 32 private Timestamp datum;
33 33
34 private String erzeuger; 34 private String erzeuger;
35 35
73 73
74 public void setText(String text) { 74 public void setText(String text) {
75 this.text = text; 75 this.text = text;
76 } 76 }
77 77
78 public Integer getMessungId() { 78 public Integer getMessungsId() {
79 return this.messungId; 79 return this.messungsId;
80 } 80 }
81 81
82 public void setMessungId(Integer messungId) { 82 public void setMessungsId(Integer messungsId) {
83 this.messungId = messungId; 83 this.messungsId = messungsId;
84 } 84 }
85 } 85 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)