comparison src/main/java/de/intevation/lada/model/stammdaten/StatusStufe.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.Entity;
6 import javax.persistence.Id;
7 import javax.persistence.Table;
8
9
10 /**
11 * The persistent class for the status_stufe database table.
12 *
13 */
14 @Entity
15 @Table(name="status_stufe")
16 public class StatusStufe implements Serializable {
17 private static final long serialVersionUID = 1L;
18
19 @Id
20 private Integer id;
21
22 private String stufe;
23
24 public StatusStufe() {
25 }
26
27 public Integer getId() {
28 return this.id;
29 }
30
31 public void setId(Integer id) {
32 this.id = id;
33 }
34
35 public String getStufe() {
36 return this.stufe;
37 }
38
39 public void setStufe(String stufe) {
40 this.stufe = stufe;
41 }
42 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)