comparison src/main/java/de/intevation/lada/model/stammdaten/StatusReihenfolge.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.Entity;
7 import javax.persistence.Id;
8 import javax.persistence.Table;
9
10
11 /**
12 * The persistent class for the status_reihenfolge database table.
13 *
14 */
15 @Entity
16 @Table(name="status_reihenfolge")
17 public class StatusReihenfolge implements Serializable {
18 private static final long serialVersionUID = 1L;
19
20 @Id
21 private Integer id;
22
23 @Column(name="von_id")
24 private Integer vonId;
25
26 @Column(name="zu_id")
27 private Integer zuId;
28
29 public StatusReihenfolge() {
30 }
31
32 public Integer getId() {
33 return this.id;
34 }
35
36 public void setId(Integer id) {
37 this.id = id;
38 }
39
40 public Integer getVonId() {
41 return this.vonId;
42 }
43
44 public void setVonId(Integer vonId) {
45 this.vonId = vonId;
46 }
47
48 public Integer getZuId() {
49 return this.zuId;
50 }
51
52 public void setZuId(Integer zuId) {
53 this.zuId = zuId;
54 }
55
56 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)