comparison src/main/java/de/intevation/lada/model/stammdaten/FilterType.java @ 1097:186d602e031a

Merged branch schema-update into default.
author Tom Gottfried <tom@intevation.de>
date Fri, 14 Oct 2016 18:17:42 +0200
parents
children
comparison
equal deleted inserted replaced
1096:565c8a67034d 1097:186d602e031a
1 package de.intevation.lada.model.stammdaten;
2
3 import java.io.Serializable;
4 import javax.persistence.*;
5
6
7 /**
8 * The persistent class for the filter_type database table.
9 *
10 */
11 @Entity
12 @Table(name="filter_type")
13 @NamedQuery(name="FilterType.findAll", query="SELECT f FROM FilterType f")
14 public class FilterType implements Serializable {
15 private static final long serialVersionUID = 1L;
16
17 @Id
18 @GeneratedValue(strategy=GenerationType.AUTO)
19 private Integer id;
20
21 private String type;
22
23 public FilterType() {
24 }
25
26 public Integer getId() {
27 return this.id;
28 }
29
30 public void setId(Integer id) {
31 this.id = id;
32 }
33
34 public String getType() {
35 return this.type;
36 }
37
38 public void setType(String type) {
39 this.type = type;
40 }
41
42 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)