comparison src/main/java/de/intevation/lada/model/stammdaten/OrtTyp.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 6b3a551236ba
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 ort_typ database table.
13 *
14 */
15 @Entity
16 @Table(name="ort_typ")
17 public class OrtTyp implements Serializable {
18 private static final long serialVersionUID = 1L;
19
20 @Id
21 private Integer id;
22
23 @Column(name="ort_typ")
24 private String ortTyp;
25
26 public OrtTyp() {
27 }
28
29 public Integer getId() {
30 return this.id;
31 }
32
33 public void setId(Integer id) {
34 this.id = id;
35 }
36
37 public String getOrtTyp() {
38 return this.ortTyp;
39 }
40
41 public void setOrtTyp(String ortTyp) {
42 this.ortTyp = ortTyp;
43 }
44
45 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)