Subversion Repositories SmartDukaan

Rev

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

Rev 31860 Rev 35833
Line 71... Line 71...
71
	@Transient
71
	@Transient
72
	private String description;
72
	private String description;
73
	
73
	
74
	@Column(name = "advance_paid")
74
	@Column(name = "advance_paid")
75
	private float advanceAmount;
75
	private float advanceAmount;
-
 
76
 
-
 
77
	@Column(name = "payment_mode")
-
 
78
	private String paymentMode = "WALLET";
76
	
79
 
-
 
80
	@Column(name = "loan_id")
-
 
81
	private Integer loanId;
-
 
82
 
77
	@Transient
83
	@Transient
78
	private float tentativeAmount;
84
	private float tentativeAmount;
79
	
85
	
80
	public LocalDateTime getNotifyTimeStamp() {
86
	public LocalDateTime getNotifyTimeStamp() {
81
		return notifyTimeStamp;
87
		return notifyTimeStamp;
Line 182... Line 188...
182
		return tentativeAmount;
188
		return tentativeAmount;
183
	}
189
	}
184
	public void setTentativeAmount(float tentativeAmount) {
190
	public void setTentativeAmount(float tentativeAmount) {
185
		this.tentativeAmount = tentativeAmount;
191
		this.tentativeAmount = tentativeAmount;
186
	}
192
	}
-
 
193
	public String getPaymentMode() {
-
 
194
		return paymentMode;
-
 
195
	}
-
 
196
	public void setPaymentMode(String paymentMode) {
-
 
197
		this.paymentMode = paymentMode;
-
 
198
	}
-
 
199
	public Integer getLoanId() {
-
 
200
		return loanId;
-
 
201
	}
-
 
202
	public void setLoanId(Integer loanId) {
-
 
203
		this.loanId = loanId;
-
 
204
	}
187
 
205
 
188
	@Override
206
	@Override
189
	public int hashCode() {
207
	public int hashCode() {
190
		final int prime = 31;
208
		final int prime = 31;
191
		int result = 1;
209
		int result = 1;