| 32172 |
jai.hind |
1 |
package com.spice.profitmandi.dao.entity.transaction;
|
|
|
2 |
|
|
|
3 |
public class LoanSummary {
|
|
|
4 |
LoanAggregation pendingLoansLoanAggregation;
|
|
|
5 |
LoanAggregation defaultLoansAggregation;
|
|
|
6 |
|
|
|
7 |
LoanAggregation dueLoansAggregation;
|
|
|
8 |
|
|
|
9 |
public LoanSummary() {
|
|
|
10 |
super();
|
|
|
11 |
|
|
|
12 |
}
|
|
|
13 |
public LoanAggregation getPendingLoansLoanAggregation() {
|
|
|
14 |
return pendingLoansLoanAggregation;
|
|
|
15 |
}
|
|
|
16 |
|
|
|
17 |
public void setPendingLoansLoanAggregation(LoanAggregation pendingLoansLoanAggregation) {
|
|
|
18 |
this.pendingLoansLoanAggregation = pendingLoansLoanAggregation;
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
public LoanAggregation getDefaultLoansAggregation() {
|
|
|
22 |
return defaultLoansAggregation;
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
public void setDefaultLoansAggregation(LoanAggregation defaultLoansAggregation) {
|
|
|
26 |
this.defaultLoansAggregation = defaultLoansAggregation;
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
@Override
|
|
|
30 |
public String toString() {
|
|
|
31 |
return "LoanSummary{" +
|
|
|
32 |
"pendingLoansLoanAggregation=" + pendingLoansLoanAggregation +
|
|
|
33 |
", defaultLoansAggregation=" + defaultLoansAggregation +
|
|
|
34 |
", dueLoansAggregation=" + dueLoansAggregation +
|
|
|
35 |
'}';
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
public LoanAggregation getDueLoansAggregation() {
|
|
|
39 |
return dueLoansAggregation;
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
public void setDueLoansAggregation(LoanAggregation dueLoansAggregation) {
|
|
|
44 |
this.dueLoansAggregation = dueLoansAggregation;
|
|
|
45 |
}
|
|
|
46 |
}
|