comparison src/main/java/de/intevation/lada/model/stammdaten/AuthLstUmw.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 auth_lst_umw database table.
13 *
14 */
15 @Entity
16 @Table(name="auth_lst_umw")
17 public class AuthLstUmw implements Serializable {
18 private static final long serialVersionUID = 1L;
19
20 @Id
21 private Integer id;
22
23 @Column(name="mst_id")
24 private String mstId;
25
26 @Column(name="umw_id")
27 private String umwId;
28
29 public AuthLstUmw() {
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 String getMstId() {
41 return this.mstId;
42 }
43
44 public void setMstId(String mstId) {
45 this.mstId = mstId;
46 }
47
48 public String getUmwId() {
49 return this.umwId;
50 }
51
52 public void setUmwId(String umwId) {
53 this.umwId = umwId;
54 }
55
56 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)