001    package org.kuali.ole.patron.bill;
002    
003    import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
004    
005    import java.math.BigDecimal;
006    import java.util.Date;
007    
008    /**
009     * The OleLoanDocument is a BO class that defines the loan document fields with getters and setters which
010     * is used for interacting the loan data with the persistence layer in OLE.
011     */
012    public class OlePatronBillDocument extends PersistableBusinessObjectBase {
013    
014        private String itemBarcode;
015        private BigDecimal totalAmount;
016        private String billNumber;
017        private Date billDate;
018        private String patronId;
019        private String itemId;
020        private String feeType;
021        private BigDecimal feeAmount;
022        private String paymentStatus;
023        private String active;
024        private String firstName;
025        private String lastName;
026    
027    
028        public String getItemBarcode() {
029            return itemBarcode;
030        }
031    
032        public void setItemBarcode(String itemBarcode) {
033            this.itemBarcode = itemBarcode;
034        }
035    
036        public String getActive() {
037            return active;
038        }
039    
040        public void setActive(String active) {
041            this.active = active;
042        }
043    
044        public BigDecimal getFeeAmount() {
045            return feeAmount;
046        }
047    
048        public void setFeeAmount(BigDecimal feeAmount) {
049            this.feeAmount = feeAmount;
050        }
051    
052        public String getFeeType() {
053            return feeType;
054        }
055    
056        public void setFeeType(String feeType) {
057            this.feeType = feeType;
058        }
059    
060        public String getItemId() {
061            return itemId;
062        }
063    
064        public void setItemId(String itemId) {
065            this.itemId = itemId;
066        }
067    
068        public String getPatronId() {
069            return patronId;
070        }
071    
072        public void setPatronId(String patronId) {
073            this.patronId = patronId;
074        }
075    
076        public Date getBillDate() {
077            return billDate;
078        }
079    
080        public void setBillDate(Date billDate) {
081            this.billDate = billDate;
082        }
083    
084        public String getBillNumber() {
085            return billNumber;
086        }
087    
088        public void setBillNumber(String billNumber) {
089            this.billNumber = billNumber;
090        }
091    
092        public BigDecimal getTotalAmount() {
093            return totalAmount;
094        }
095    
096        public void setTotalAmount(BigDecimal totalAmount) {
097            this.totalAmount = totalAmount;
098        }
099    
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