001package org.kuali.ole.deliver.bo;
002
003
004import org.kuali.rice.core.api.util.type.KualiDecimal;
005import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
006
007import java.math.BigDecimal;
008import java.sql.Timestamp;
009
010/**
011 * Created with IntelliJ IDEA.
012 * User: balakumaranm
013 * Date: 4/26/13
014 * Time: 7:23 PM
015 * To change this template use File | Settings | File Templates.
016 */
017public class OleItemLevelBillPayment extends PersistableBusinessObjectBase {
018
019    private String paymentId;
020    private String lineItemId;
021    private KualiDecimal amount;
022    private Timestamp paymentDate;
023    private String createdUser;
024    private String paymentMode;
025    private String transactionNumber;
026    private String transactionNote;
027    private FeeType feeType = new FeeType();
028
029    /**
030     * @return
031     */
032    public String getPaymentId() {
033        return paymentId;
034    }
035
036    /**
037     * @param paymentId
038     */
039    public void setPaymentId(String paymentId) {
040        this.paymentId = paymentId;
041    }
042
043    /**
044     * @return
045     */
046    public KualiDecimal getAmount() {
047        return amount;
048    }
049
050    /**
051     * @param amount
052     */
053    public void setAmount(KualiDecimal amount) {
054        this.amount = amount;
055    }
056
057    /**
058     * @return
059     */
060    public String getLineItemId() {
061        return lineItemId;
062    }
063
064    /**
065     * @param lineItemId
066     */
067    public void setLineItemId(String lineItemId) {
068        this.lineItemId = lineItemId;
069    }
070
071    /**
072     * @return
073     */
074    public Timestamp getPaymentDate() {
075        return paymentDate;
076    }
077
078    /**
079     * @param paymentDate
080     */
081    public void setPaymentDate(Timestamp paymentDate) {
082        this.paymentDate = paymentDate;
083    }
084
085    /**
086     * @return
087     */
088    public String getCreatedUser() {
089        return createdUser;
090    }
091
092    /**
093     * @param createdUser
094     */
095    public void setCreatedUser(String createdUser) {
096        this.createdUser = createdUser;
097    }
098
099    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}