Subversion Repositories SmartDukaan

Rev

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

Rev 30859 Rev 31020
Line 10... Line 10...
10
	private int fofoId;
10
	private int fofoId;
11
	private BigDecimal approvalAmount;
11
	private BigDecimal approvalAmount;
12
	private int freeDays;
12
	private int freeDays;
13
	private SanctionStatus status;
13
	private SanctionStatus status;
14
 
14
 
-
 
15
	private boolean stockHold;
-
 
16
 
15
	public int getFreeDays() {
17
	public int getFreeDays() {
16
		return freeDays;
18
		return freeDays;
17
	}
19
	}
18
 
20
 
19
	public void setFreeDays(int freeDays) {
21
	public void setFreeDays(int freeDays) {
Line 50... Line 52...
50
 
52
 
51
	public void setStatus(SanctionStatus status) {
53
	public void setStatus(SanctionStatus status) {
52
		this.status = status;
54
		this.status = status;
53
	}
55
	}
54
 
56
 
-
 
57
	public boolean isStockHold() {
-
 
58
		return stockHold;
-
 
59
	}
-
 
60
 
-
 
61
	public void setStockHold(boolean stockHold) {
-
 
62
		this.stockHold = stockHold;
-
 
63
	}
-
 
64
 
55
	@Override
65
	@Override
56
	public String toString() {
66
	public String toString() {
57
		return "SanctionRequestModel [id=" + id + ", fofoId=" + fofoId + ", approvalAmount=" + approvalAmount
67
		return "SanctionRequestModel [id=" + id + ", fofoId=" + fofoId + ", approvalAmount=" + approvalAmount
58
				+ ", freeDays=" + freeDays + ", status=" + status + "]";
68
				+ ", freeDays=" + freeDays + ", status=" + status + ", stockHold=" + stockHold + "]";
59
	}
69
	}
60
 
70
 
61
}
71
}