View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   
4   import org.kuali.rice.core.api.util.type.KualiDecimal;
5   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
6   
7   import java.math.BigDecimal;
8   import java.sql.Timestamp;
9   
10  /**
11   * Created with IntelliJ IDEA.
12   * User: balakumaranm
13   * Date: 4/26/13
14   * Time: 7:23 PM
15   * To change this template use File | Settings | File Templates.
16   */
17  public class OleItemLevelBillPayment extends PersistableBusinessObjectBase {
18  
19      private String paymentId;
20      private String lineItemId;
21      private KualiDecimal amount;
22      private Timestamp paymentDate;
23      private String createdUser;
24      private String paymentMode;
25      private String transactionNumber;
26      private String transactionNote;
27      private FeeType feeType = new FeeType();
28  
29      /**
30       * @return
31       */
32      public String getPaymentId() {
33          return paymentId;
34      }
35  
36      /**
37       * @param paymentId
38       */
39      public void setPaymentId(String paymentId) {
40          this.paymentId = paymentId;
41      }
42  
43      /**
44       * @return
45       */
46      public KualiDecimal getAmount() {
47          return amount;
48      }
49  
50      /**
51       * @param amount
52       */
53      public void setAmount(KualiDecimal amount) {
54          this.amount = amount;
55      }
56  
57      /**
58       * @return
59       */
60      public String getLineItemId() {
61          return lineItemId;
62      }
63  
64      /**
65       * @param lineItemId
66       */
67      public void setLineItemId(String lineItemId) {
68          this.lineItemId = lineItemId;
69      }
70  
71      /**
72       * @return
73       */
74      public Timestamp getPaymentDate() {
75          return paymentDate;
76      }
77  
78      /**
79       * @param paymentDate
80       */
81      public void setPaymentDate(Timestamp paymentDate) {
82          this.paymentDate = paymentDate;
83      }
84  
85      /**
86       * @return
87       */
88      public String getCreatedUser() {
89          return createdUser;
90      }
91  
92      /**
93       * @param createdUser
94       */
95      public void setCreatedUser(String createdUser) {
96          this.createdUser = createdUser;
97      }
98  
99      public String getPaymentMode() {
100         return paymentMode;
101     }
102 
103     public void setPaymentMode(String paymentMode) {
104         this.paymentMode = paymentMode;
105     }
106 
107     public String getTransactionNumber() {
108         return transactionNumber;
109     }
110 
111     public void setTransactionNumber(String transactionNumber) {
112         this.transactionNumber = transactionNumber;
113     }
114 
115     public String getTransactionNote() {
116         return transactionNote;
117     }
118 
119     public void setTransactionNote(String transactionNote) {
120         this.transactionNote = transactionNote;
121     }
122 }