1 package org.kuali.ole.ncip.bo;
2
3 import org.kuali.ole.deliver.bo.FeeType;
4 import org.kuali.rice.core.api.util.type.KualiDecimal;
5 import org.mvel2.util.Make;
6
7 import java.util.*;
8 import java.math.BigDecimal;
9
10
11
12
13
14
15
16
17 public class OLEItemFine {
18
19 private String patronBillId;
20 private String itemId;
21 private String catalogueId;
22 private BigDecimal amount;
23 private BigDecimal balance;
24 private String billDate;
25 private String noOfPayments;
26 private String withItems;
27 private String reason;
28 private String dateCharged;
29 private String feeType;
30 private String paymentMethod;
31 private String title;
32 private String author;
33
34
35
36 public String getPatronBillId() {
37 return patronBillId;
38 }
39
40 public void setPatronBillId(String patronBillId) {
41 this.patronBillId = patronBillId;
42 }
43
44 public String getItemId() {
45 return itemId;
46 }
47
48 public void setItemId(String itemId) {
49 this.itemId = itemId;
50 }
51
52 public String getCatalogueId() {
53 return catalogueId;
54 }
55
56 public void setCatalogueId(String catalogueId) {
57 this.catalogueId = catalogueId;
58 }
59
60 public BigDecimal getAmount() {
61 return amount;
62 }
63
64 public void setAmount(BigDecimal amount) {
65 this.amount = amount;
66 }
67
68 public BigDecimal getBalance() {
69 return balance;
70 }
71
72 public void setBalance(BigDecimal balance) {
73 this.balance = balance;
74 }
75
76 public String getBillDate() {
77 return billDate;
78 }
79
80 public void setBillDate(String billDate) {
81 this.billDate = billDate;
82 }
83
84 public String getNoOfPayments() {
85 return noOfPayments;
86 }
87
88 public void setNoOfPayments(String noOfPayments) {
89 this.noOfPayments = noOfPayments;
90 }
91
92 public String getWithItems() {
93 return withItems;
94 }
95
96 public void setWithItems(String withItems) {
97 this.withItems = withItems;
98 }
99
100 public String getReason() {
101 return reason;
102 }
103
104 public void setReason(String reason) {
105 this.reason = reason;
106 }
107
108 public String getDateCharged() {
109 return dateCharged;
110 }
111
112 public void setDateCharged(String dateCharged) {
113 this.dateCharged = dateCharged;
114 }
115
116
117
118
119
120
121
122
123
124 public String getFeeType() {
125 return feeType;
126 }
127
128 public void setFeeType(String feeType) {
129 this.feeType = feeType;
130 }
131
132 public String getPaymentMethod() {
133 return paymentMethod;
134 }
135
136 public void setPaymentMethod(String paymentMethod) {
137 this.paymentMethod = paymentMethod;
138 }
139
140 public String getTitle() {
141 return title;
142 }
143
144 public void setTitle(String title) {
145 this.title = title;
146 }
147
148 public String getAuthor() {
149 return author;
150 }
151
152 public void setAuthor(String author) {
153 this.author = author;
154 }
155 }