1 package org.kuali.ole.patron.bill;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.math.BigDecimal;
6 import java.util.Date;
7
8
9
10
11
12
13
14
15 public class PatronBill extends PersistableBusinessObjectBase {
16
17 private String patronBarcode;
18 private String itemBarcode;
19 private BigDecimal totalAmount;
20 private String billNumber;
21 private Date billDate;
22 private FeeType patronFeeType;
23 private String patronId;
24 private String proxyPatronId;
25 private String itemId;
26 private String freeTextNote;
27 private BigDecimal unPaidBalance;
28 private String paymentStatus;
29 private String paymentMethod;
30 private BigDecimal paymentAmount;
31 private String paymentOperatorId;
32 private String paymentMachineId;
33 private Date createDate;
34 private String operatorId;
35 private String machineId;
36 private String note;
37 private boolean active;
38 private String feeType;
39 private BigDecimal feeAmount;
40 private String id;
41 private String paymentStatusName;
42 private String firstName;
43 private String lastName;
44 private boolean reviewed;
45
46
47
48 public String getNote() {
49 return note;
50 }
51
52 public void setNote(String note) {
53 this.note = note;
54 }
55
56 public String getMachineId() {
57 return machineId;
58 }
59
60 public void setMachineId(String machineId) {
61 this.machineId = machineId;
62 }
63
64 public String getOperatorId() {
65 return operatorId;
66 }
67
68 public void setOperatorId(String operatorId) {
69 this.operatorId = operatorId;
70 }
71
72 public Date getCreateDate() {
73 return createDate;
74 }
75
76 public void setCreateDate(Date createDate) {
77 this.createDate = createDate;
78 }
79
80 public String getPaymentMachineId() {
81 return paymentMachineId;
82 }
83
84 public void setPaymentMachineId(String paymentMachineId) {
85 this.paymentMachineId = paymentMachineId;
86 }
87
88 public String getPaymentOperatorId() {
89 return paymentOperatorId;
90 }
91
92 public void setPaymentOperatorId(String paymentOperatorId) {
93 this.paymentOperatorId = paymentOperatorId;
94 }
95
96 public String getPaymentStatus() {
97 return paymentStatus;
98 }
99
100 public void setPaymentStatus(String paymentStatus) {
101 this.paymentStatus = paymentStatus;
102 }
103
104 public String getPaymentMethod() {
105 return paymentMethod;
106 }
107
108 public void setPaymentMethod(String paymentMethod) {
109 this.paymentMethod = paymentMethod;
110 }
111
112 public String getPatronId() {
113 return patronId;
114 }
115
116 public void setPatronId(String patronId) {
117 this.patronId = patronId;
118 }
119
120 public String getItemId() {
121 return itemId;
122 }
123
124 public void setItemId(String itemId) {
125 this.itemId = itemId;
126 }
127
128 public String getProxyPatronId() {
129 return proxyPatronId;
130 }
131
132 public void setProxyPatronId(String proxyPatronId) {
133 this.proxyPatronId = proxyPatronId;
134 }
135
136 public FeeType getPatronFeeType() {
137 return patronFeeType;
138 }
139
140 public void setPatronFeeType(FeeType patronFeeType) {
141 this.patronFeeType = patronFeeType;
142 }
143
144 public Date getBillDate() {
145 return billDate;
146 }
147
148 public void setBillDate(Date billDate) {
149 this.billDate = billDate;
150 }
151
152 public String getBillNumber() {
153 return billNumber;
154 }
155
156 public void setBillNumber(String billNumber) {
157 this.billNumber = billNumber;
158 }
159
160 public String getItemBarcode() {
161 return itemBarcode;
162 }
163
164 public void setItemBarcode(String itemBarcode) {
165 this.itemBarcode = itemBarcode;
166 }
167
168 public String getPatronBarcode() {
169 return patronBarcode;
170 }
171
172 public void setPatronBarcode(String patronBarcode) {
173 this.patronBarcode = patronBarcode;
174 }
175
176 public String getFreeTextNote() {
177 return freeTextNote;
178 }
179
180 public void setFreeTextNote(String freeTextNote) {
181 this.freeTextNote = freeTextNote;
182 }
183
184 public BigDecimal getTotalAmount() {
185 return totalAmount;
186 }
187
188 public void setTotalAmount(BigDecimal totalAmount) {
189 this.totalAmount = totalAmount;
190 }
191
192 public BigDecimal getPaymentAmount() {
193 return paymentAmount;
194 }
195
196 public void setPaymentAmount(BigDecimal paymentAmount) {
197 this.paymentAmount = paymentAmount;
198 }
199
200 public BigDecimal getUnPaidBalance() {
201 return unPaidBalance;
202 }
203
204 public void setUnPaidBalance(BigDecimal unPaidBalance) {
205 this.unPaidBalance = unPaidBalance;
206 }
207
208 public boolean isActive() {
209 return active;
210 }
211
212 public void setActive(boolean active) {
213 this.active = active;
214 }
215
216 public String getFeeType() {
217 return feeType;
218 }
219
220 public void setFeeType(String feeType) {
221 this.feeType = feeType;
222 }
223
224 public BigDecimal getFeeAmount() {
225 return feeAmount;
226 }
227
228 public void setFeeAmount(BigDecimal feeAmount) {
229 this.feeAmount = feeAmount;
230 }
231
232 public String getId() {
233 return id;
234 }
235
236 public void setId(String id) {
237 this.id = id;
238 }
239
240 public String getPaymentStatusName() {
241 return paymentStatusName;
242 }
243
244 public void setPaymentStatusName(String paymentStatusName) {
245 this.paymentStatusName = paymentStatusName;
246 }
247
248 public String getFirstName() {
249 return firstName;
250 }
251
252 public void setFirstName(String firstName) {
253 this.firstName = firstName;
254 }
255
256 public String getLastName() {
257 return lastName;
258 }
259
260 public void setLastName(String lastName) {
261 this.lastName = lastName;
262 }
263
264 public boolean isReviewed() {
265 return reviewed;
266 }
267
268 public void setReviewed(boolean reviewed) {
269 this.reviewed = reviewed;
270 }
271 }