View Javadoc

1   package org.kuali.ole.patron.bill.form;
2   
3   import org.kuali.ole.patron.bill.*;
4   import org.kuali.rice.krad.web.form.DocumentFormBase;
5   
6   import java.math.BigDecimal;
7   import java.util.ArrayList;
8   import java.util.Date;
9   import java.util.List;
10  
11  /**
12   * Created with IntelliJ IDEA.
13   * User: ?
14   * Date: 10/17/12
15   * Time: 9:46 PM
16   * To change this template use File | Settings | File Templates.
17   */
18  public class ItemBillForm extends DocumentFormBase {
19  
20      private String itemBarcode;
21      private BigDecimal totalAmount;
22      private String billNumber;
23      private Date billDate;
24      private FeeType patronFeeType;
25      private String patronId;
26      private  BigDecimal unPaidBalance;
27      private String paymentStatusName;
28      private String feeType;
29      private BigDecimal feeAmount;
30      private List<ItemBill>  itemBillList = new ArrayList<ItemBill>();
31  
32      public String getItemBarcode() {
33          return itemBarcode;
34      }
35  
36      public void setItemBarcode(String itemBarcode) {
37          this.itemBarcode = itemBarcode;
38      }
39  
40      public List<ItemBill> getItemBillList() {
41          return itemBillList;
42      }
43  
44      public void setItemBillList(List<ItemBill> itemBillList) {
45          this.itemBillList = itemBillList;
46      }
47  
48      public BigDecimal getFeeAmount() {
49          return feeAmount;
50      }
51  
52      public void setFeeAmount(BigDecimal feeAmount) {
53          this.feeAmount = feeAmount;
54      }
55  
56      public String getFeeType() {
57          return feeType;
58      }
59  
60      public void setFeeType(String feeType) {
61          this.feeType = feeType;
62      }
63  
64      public BigDecimal getUnPaidBalance() {
65          return unPaidBalance;
66      }
67  
68      public void setUnPaidBalance(BigDecimal unPaidBalance) {
69          this.unPaidBalance = unPaidBalance;
70      }
71  
72      public String getPaymentStatusName() {
73          return paymentStatusName;
74      }
75  
76      public void setPaymentStatusName(String paymentStatusName) {
77          this.paymentStatusName = paymentStatusName;
78      }
79  
80      public String getPatronId() {
81          return patronId;
82      }
83  
84      public void setPatronId(String patronId) {
85          this.patronId = patronId;
86      }
87  
88      public Date getBillDate() {
89          return billDate;
90      }
91  
92      public void setBillDate(Date billDate) {
93          this.billDate = billDate;
94      }
95  
96      public String getBillNumber() {
97          return billNumber;
98      }
99  
100     public void setBillNumber(String billNumber) {
101         this.billNumber = billNumber;
102     }
103 
104     public BigDecimal getTotalAmount() {
105         return totalAmount;
106     }
107 
108     public void setTotalAmount(BigDecimal totalAmount) {
109         this.totalAmount = totalAmount;
110     }
111 
112     public FeeType getPatronFeeType() {
113         return patronFeeType;
114     }
115 
116     public void setPatronFeeType(FeeType patronFeeType) {
117         this.patronFeeType = patronFeeType;
118     }
119 }