Mercurial > dive4elements > river
comparison flys-backend/src/main/java/de/intevation/seddb/model/Messunglotcount.java @ 3689:c938e568c4a2 2.9
merged flys-backend/2.9
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:44 +0200 |
parents | 2ae732e2c65c |
children | 18619c1e7c2a |
comparison
equal
deleted
inserted
replaced
3651:06a65baae494 | 3689:c938e568c4a2 |
---|---|
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 } |