comparison src/main/java/de/intevation/lada/model/stammdaten/MmtMessgroesse.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
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.EmbeddedId;
7 import javax.persistence.Entity;
8 import javax.persistence.Table;
9
10
11 /**
12 * The persistent class for the mmt_messgroesse database table.
13 *
14 */
15 @Entity
16 @Table(name="mmt_messgroesse")
17 public class MmtMessgroesse implements Serializable {
18 private static final long serialVersionUID = 1L;
19
20 @EmbeddedId
21 private MmtMessgroessePK id;
22
23 @Column(name="messgroesse_id", insertable=false, updatable=false)
24 private Integer messgroesseId;
25
26 @Column(name="mmt_id", insertable=false, updatable=false)
27 private String mmtId;
28
29 public MmtMessgroesse() {
30 }
31
32 public MmtMessgroessePK getMmtMessgroessePK() {
33 return this.id;
34 }
35
36 public void setMmtMessgroessePK(MmtMessgroessePK id) {
37 this.id = id;
38 }
39
40 public Integer getMessgroesseId() {
41 return this.messgroesseId;
42 }
43
44 public void setMessgroesseId(Integer messgroesseId) {
45 this.messgroesseId = messgroesseId;
46 }
47
48 public String getMmtId() {
49 return this.mmtId;
50 }
51
52 public void setMmtId(String mmtId) {
53 this.mmtId = mmtId;
54 }
55
56 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)