Subversion Repositories SmartDukaan

Rev

Rev 30929 | Rev 32074 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30929 Rev 31159
Line 52... Line 52...
52
 
52
 
53
	@Transient
53
	@Transient
54
	private boolean loanStatus;
54
	private boolean loanStatus;
55
 
55
 
56
	@Transient
56
	@Transient
-
 
57
	private BigDecimal totalPending;
-
 
58
 
-
 
59
	@Transient
57
	private List<DailyStatementModel> dailyStatementModel;
60
	private List<DailyStatementModel> dailyStatementModel;
58
 
61
 
59
	public int getId() {
62
	public int getId() {
60
		return id;
63
		return id;
61
	}
64
	}
62
 
65
 
63
	public void setId(int id) {
66
	public void setId(int id) {
64
		this.id = id;
67
		this.id = id;
65
	}
68
	}
66
 
69
 
-
 
70
	public BigDecimal getTotalPending() {
-
 
71
		return totalPending;
-
 
72
	}
-
 
73
 
-
 
74
	public void setTotalPending(BigDecimal totalPending) {
-
 
75
		this.totalPending = totalPending;
-
 
76
	}
-
 
77
 
67
	public int getFofoId() {
78
	public int getFofoId() {
68
		return fofoId;
79
		return fofoId;
69
	}
80
	}
70
 
81
 
71
	public void setFofoId(int fofoId) {
82
	public void setFofoId(int fofoId) {
Line 155... Line 166...
155
	@Override
166
	@Override
156
	public String toString() {
167
	public String toString() {
157
		return "Loan [id=" + id + ", fofoId=" + fofoId + ", interestRate=" + interestRate + ", intialAmount="
168
		return "Loan [id=" + id + ", fofoId=" + fofoId + ", interestRate=" + interestRate + ", intialAmount="
158
				+ intialAmount + ", pendingAmount=" + pendingAmount + ", createdOn=" + createdOn + ", dueDate="
169
				+ intialAmount + ", pendingAmount=" + pendingAmount + ", createdOn=" + createdOn + ", dueDate="
159
				+ dueDate + ", interestAccrued=" + interestAccrued + ", interestPaid=" + interestPaid + ", freeDays="
170
				+ dueDate + ", interestAccrued=" + interestAccrued + ", interestPaid=" + interestPaid + ", freeDays="
160
				+ freeDays + ", loanStatus=" + loanStatus + ", dailyStatementModel=" + dailyStatementModel + "]";
171
				+ freeDays + ", loanStatus=" + loanStatus + ", totalPending=" + totalPending + ", dailyStatementModel="
-
 
172
				+ dailyStatementModel + "]";
161
	}
173
	}
162
 
174
 
163
}
175
}