comparison flys-backend/src/main/java/de/intevation/seddb/model/Messunglotcount.java @ 3332:aa8ed778c8cc

Added Hibernate access class to SedDB flys-backend/trunk@4658 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 14 Jun 2012 10:06:34 +0000
parents
children 2ae732e2c65c
comparison
equal deleted inserted replaced
3331:b2aac19a8982 3332:aa8ed778c8cc
1 package de.intevation.seddb.model;
2 // Generated 14.06.2012 11:30:57 by Hibernate Tools 3.4.0.CR1
3
4
5 import javax.persistence.AttributeOverride;
6 import javax.persistence.AttributeOverrides;
7 import javax.persistence.Column;
8 import javax.persistence.EmbeddedId;
9 import javax.persistence.Entity;
10 import javax.persistence.Table;
11
12 /**
13 * Messunglotcount generated by hbm2java
14 */
15 @Entity
16 @Table(name="MESSUNGLOTCOUNT"
17 ,schema="SEDDB"
18 )
19 public class Messunglotcount implements java.io.Serializable {
20
21
22 private MessunglotcountId id;
23
24 public Messunglotcount() {
25 }
26
27 public Messunglotcount(MessunglotcountId id) {
28 this.id = id;
29 }
30
31 @EmbeddedId
32
33
34 @AttributeOverrides( {
35 @AttributeOverride(name="messungid", column=@Column(name="MESSUNGID", nullable=false, precision=11, scale=0) ),
36 @AttributeOverride(name="glotcount", column=@Column(name="GLOTCOUNT", precision=22, scale=0) ),
37 @AttributeOverride(name="slotcount", column=@Column(name="SLOTCOUNT", precision=22, scale=0) ) } )
38 public MessunglotcountId getId() {
39 return this.id;
40 }
41
42 public void setId(MessunglotcountId id) {
43 this.id = id;
44 }
45 }

http://dive4elements.wald.intevation.org