1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.kuali.ole.pdp.businessobject;
21
22 import java.util.LinkedHashMap;
23
24 import org.kuali.ole.sys.OLEPropertyConstants;
25 import org.kuali.ole.sys.businessobject.TimestampedBusinessObjectBase;
26 import org.kuali.rice.core.api.util.type.KualiInteger;
27
28 public class AchAccountNumber extends TimestampedBusinessObjectBase {
29
30 private KualiInteger id;
31 private String achBankAccountNbr;
32
33 public AchAccountNumber() {
34 super();
35 }
36
37
38
39
40
41
42
43 public KualiInteger getId() {
44 return id;
45 }
46
47
48
49
50
51
52
53 public void setId(KualiInteger id) {
54 this.id = id;
55 }
56
57
58
59
60
61
62
63 public String getAchBankAccountNbr() {
64 return achBankAccountNbr;
65 }
66
67
68
69
70
71
72
73 public void setAchBankAccountNbr(String achBankAccountNbr) {
74 this.achBankAccountNbr = achBankAccountNbr;
75 }
76
77
78
79
80
81
82 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
83 LinkedHashMap m = new LinkedHashMap();
84 m.put(OLEPropertyConstants.ID, this.id);
85
86 return m;
87 }
88 }