View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import java.math.BigDecimal;
4   import java.util.Date;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: ?
9    * Date: 12/6/12
10   * Time: 2:50 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class PatronBillReviewDocument {
14  
15      private boolean reviewed;
16      private String itemBarcode;
17      private String billNumber;
18      private Date billDate;
19      private String patronId;
20      private String feeType;
21      private BigDecimal feeAmount;
22      private String paymentStatus;
23      private BigDecimal paymentAmount;
24      private String firstName;
25      private String lastName;
26  
27      public boolean isReviewed() {
28          return reviewed;
29      }
30  
31      public void setReviewed(boolean reviewed) {
32          this.reviewed = reviewed;
33      }
34  
35      public String getItemBarcode() {
36          return itemBarcode;
37      }
38  
39      public void setItemBarcode(String itemBarcode) {
40          this.itemBarcode = itemBarcode;
41      }
42  
43      public String getBillNumber() {
44          return billNumber;
45      }
46  
47      public void setBillNumber(String billNumber) {
48          this.billNumber = billNumber;
49      }
50  
51      public Date getBillDate() {
52          return billDate;
53      }
54  
55      public void setBillDate(Date billDate) {
56          this.billDate = billDate;
57      }
58  
59      public String getPatronId() {
60          return patronId;
61      }
62  
63      public void setPatronId(String patronId) {
64          this.patronId = patronId;
65      }
66  
67      public String getFeeType() {
68          return feeType;
69      }
70  
71      public void setFeeType(String feeType) {
72          this.feeType = feeType;
73      }
74  
75      public BigDecimal getFeeAmount() {
76          return feeAmount;
77      }
78  
79      public void setFeeAmount(BigDecimal feeAmount) {
80          this.feeAmount = feeAmount;
81      }
82  
83      public String getPaymentStatus() {
84          return paymentStatus;
85      }
86  
87      public void setPaymentStatus(String paymentStatus) {
88          this.paymentStatus = paymentStatus;
89      }
90  
91      public BigDecimal getPaymentAmount() {
92          return paymentAmount;
93      }
94  
95      public void setPaymentAmount(BigDecimal paymentAmount) {
96          this.paymentAmount = paymentAmount;
97      }
98  
99      public String getFirstName() {
100         return firstName;
101     }
102 
103     public void setFirstName(String firstName) {
104         this.firstName = firstName;
105     }
106 
107     public String getLastName() {
108         return lastName;
109     }
110 
111     public void setLastName(String lastName) {
112         this.lastName = lastName;
113     }
114 }