Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.entity.transaction;

public class LoanSummary {
    LoanAggregation pendingLoansLoanAggregation;
    LoanAggregation defaultLoansAggregation;

    LoanAggregation dueLoansAggregation;

    public LoanSummary() {
       super();

    }
    public LoanAggregation getPendingLoansLoanAggregation() {
        return pendingLoansLoanAggregation;
    }

    public void setPendingLoansLoanAggregation(LoanAggregation pendingLoansLoanAggregation) {
        this.pendingLoansLoanAggregation = pendingLoansLoanAggregation;
    }

    public LoanAggregation getDefaultLoansAggregation() {
        return defaultLoansAggregation;
    }

    public void setDefaultLoansAggregation(LoanAggregation defaultLoansAggregation) {
        this.defaultLoansAggregation = defaultLoansAggregation;
    }

    @Override
    public String toString() {
        return "LoanSummary{" +
                "pendingLoansLoanAggregation=" + pendingLoansLoanAggregation +
                ", defaultLoansAggregation=" + defaultLoansAggregation +
                ", dueLoansAggregation=" + dueLoansAggregation +
                '}';
    }

    public LoanAggregation getDueLoansAggregation() {
        return dueLoansAggregation;
    }


    public void setDueLoansAggregation(LoanAggregation dueLoansAggregation) {
        this.dueLoansAggregation = dueLoansAggregation;
    }
}