1 package org.kuali.ole.deliver.bo;
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 public class OlePatronBillDocument extends PersistableBusinessObjectBase {
13
14 private String itemBarcode;
15 private BigDecimal totalAmount;
16 private String billNumber;
17 private Date billDate;
18 private String patronId;
19 private String itemId;
20 private String feeType;
21 private BigDecimal feeAmount;
22 private String paymentStatus;
23 private String active;
24 private String firstName;
25 private String lastName;
26
27
28 public String getItemBarcode() {
29 return itemBarcode;
30 }
31
32 public void setItemBarcode(String itemBarcode) {
33 this.itemBarcode = itemBarcode;
34 }
35
36 public String getActive() {
37 return active;
38 }
39
40 public void setActive(String active) {
41 this.active = active;
42 }
43
44 public BigDecimal getFeeAmount() {
45 return feeAmount;
46 }
47
48 public void setFeeAmount(BigDecimal feeAmount) {
49 this.feeAmount = feeAmount;
50 }
51
52 public String getFeeType() {
53 return feeType;
54 }
55
56 public void setFeeType(String feeType) {
57 this.feeType = feeType;
58 }
59
60 public String getItemId() {
61 return itemId;
62 }
63
64 public void setItemId(String itemId) {
65 this.itemId = itemId;
66 }
67
68 public String getPatronId() {
69 return patronId;
70 }
71
72 public void setPatronId(String patronId) {
73 this.patronId = patronId;
74 }
75
76 public Date getBillDate() {
77 return billDate;
78 }
79
80 public void setBillDate(Date billDate) {
81 this.billDate = billDate;
82 }
83
84 public String getBillNumber() {
85 return billNumber;
86 }
87
88 public void setBillNumber(String billNumber) {
89 this.billNumber = billNumber;
90 }
91
92 public BigDecimal getTotalAmount() {
93 return totalAmount;
94 }
95
96 public void setTotalAmount(BigDecimal totalAmount) {
97 this.totalAmount = totalAmount;
98 }
99
100 public String getPaymentStatus() {
101 return paymentStatus;
102 }
103
104 public void setPaymentStatus(String paymentStatus) {
105 this.paymentStatus = paymentStatus;
106 }
107
108 public String getFirstName() {
109 return firstName;
110 }
111
112 public void setFirstName(String firstName) {
113 this.firstName = firstName;
114 }
115
116 public String getLastName() {
117 return lastName;
118 }
119
120 public void setLastName(String lastName) {
121 this.lastName = lastName;
122 }
123 }
124