1 package generated.model.de.fhdw.partner;
2
3 import de.fhdw.wtf.context.model.AnyType;
4 import de.fhdw.wtf.context.model.Int;
5 import de.fhdw.wtf.persistence.meta.UserObject;
6
7
8
9
10 public class Bankidentifier extends AnyType {
11
12
13
14
15 private Int id;
16
17
18
19
20
21
22
23 public Bankidentifier(final Int number) {
24 this.id = number;
25 }
26
27
28
29
30
31
32
33 public Bankidentifier(final UserObject userObject) {
34 super(userObject);
35 }
36
37
38
39
40
41
42 public Int getNumber() {
43 return this.id;
44 }
45 }