Subversion Repositories SmartDukaan

Rev

Rev 30859 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30859 Rev 30913
Line 1... Line 1...
1
package com.spice.profitmandi.service.user;
1
package com.spice.profitmandi.service.user;
2
 
2
 
3
import java.math.BigDecimal;
3
import java.math.BigDecimal;
-
 
4
import java.util.List;
4
 
5
 
-
 
6
import com.spice.profitmandi.dao.entity.transaction.Loan;
5
import com.spice.profitmandi.dao.enumuration.transaction.CreditRisk;
7
import com.spice.profitmandi.dao.enumuration.transaction.CreditRisk;
6
import com.spice.profitmandi.dao.enumuration.transaction.SanctionStatus;
8
import com.spice.profitmandi.dao.enumuration.transaction.SanctionStatus;
7
 
9
 
8
public class SDCreditModel {
10
public class SDCreditModel {
9
 
11
 
Line 16... Line 18...
16
	private int totalOpenLoan;
18
	private int totalOpenLoan;
17
	private CreditRisk risk;
19
	private CreditRisk risk;
18
	private int creditDuration;
20
	private int creditDuration;
19
	private BigDecimal interest;
21
	private BigDecimal interest;
20
	private SanctionStatus status;
22
	private SanctionStatus status;
-
 
23
	private List<Loan> loan;
-
 
24
 
-
 
25
	public List<Loan> getLoan() {
-
 
26
		return loan;
-
 
27
	}
-
 
28
 
-
 
29
	public void setLoan(List<Loan> loan) {
-
 
30
		this.loan = loan;
-
 
31
	}
21
 
32
 
22
	public SanctionStatus getStatus() {
33
	public SanctionStatus getStatus() {
23
		return status;
34
		return status;
24
	}
35
	}
25
 
36
 
Line 110... Line 121...
110
	@Override
121
	@Override
111
	public String toString() {
122
	public String toString() {
112
		return "SDCreditModel [fofoId=" + fofoId + ", businessName=" + businessName + ", mobile=" + mobile
123
		return "SDCreditModel [fofoId=" + fofoId + ", businessName=" + businessName + ", mobile=" + mobile
113
				+ ", eligibility=" + eligibility + ", limit=" + limit + ", availability=" + availability
124
				+ ", eligibility=" + eligibility + ", limit=" + limit + ", availability=" + availability
114
				+ ", totalOpenLoan=" + totalOpenLoan + ", risk=" + risk + ", creditDuration=" + creditDuration
125
				+ ", totalOpenLoan=" + totalOpenLoan + ", risk=" + risk + ", creditDuration=" + creditDuration
115
				+ ", interest=" + interest + ", status=" + status + "]";
126
				+ ", interest=" + interest + ", status=" + status + ", loan=" + loan + "]";
116
	}
127
	}
117
 
128
 
118
}
129
}