Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30859 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.math.BigDecimal;
4
 
5
public class SdCreditRequirementModel {
6
 
7
	private int fofoId;
8
	private int securityCheck;
9
	private BigDecimal limit;
10
	private int freeDays;
11
	private BigDecimal interest;
12
	private int creditDays;
13
 
14
	public int getCreditDays() {
15
		return creditDays;
16
	}
17
 
18
	public void setCreditDays(int creditDays) {
19
		this.creditDays = creditDays;
20
	}
21
 
22
	public int getFofoId() {
23
		return fofoId;
24
	}
25
 
26
	public void setFofoId(int fofoId) {
27
		this.fofoId = fofoId;
28
	}
29
 
30
	public int getSecurityCheck() {
31
		return securityCheck;
32
	}
33
 
34
	public void setSecurityCheck(int securityCheck) {
35
		this.securityCheck = securityCheck;
36
	}
37
 
38
	public int getFreeDays() {
39
		return freeDays;
40
	}
41
 
42
	public void setFreeDays(int freeDays) {
43
		this.freeDays = freeDays;
44
	}
45
 
46
	public BigDecimal getLimit() {
47
		return limit;
48
	}
49
 
50
	public void setLimit(BigDecimal limit) {
51
		this.limit = limit;
52
	}
53
 
54
	public BigDecimal getInterest() {
55
		return interest;
56
	}
57
 
58
	public void setInterest(BigDecimal interest) {
59
		this.interest = interest;
60
	}
61
 
62
	@Override
63
	public String toString() {
64
		return "SdCreditRequirementModel [fofoId=" + fofoId + ", securityCheck=" + securityCheck + ", limit=" + limit
65
				+ ", freeDays=" + freeDays + ", interest=" + interest + ", creditDays=" + creditDays + "]";
66
	}
67
 
68
}