Subversion Repositories SmartDukaan

Rev

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

Rev 23627 Rev 23663
Line 38... Line 38...
38
	private LocalDate createDate = LocalDate.now();
38
	private LocalDate createDate = LocalDate.now();
39
	
39
	
40
	@Column(name = "opening_balance")
40
	@Column(name = "opening_balance")
41
	private float openingBalance;
41
	private float openingBalance;
42
	
42
	
43
	@Column(name = "closing_balance")
43
	@Column(name = "wallet_recharge_amount")
44
	private float closingBalance;
44
	private float walletRechargeAmount;
45
	
45
	
46
	@Column(name = "total_amount")
46
	@Column(name = "total_amount")
47
	private float totalAmount;
47
	private float totalAmount;
-
 
48
 
-
 
49
	@Column(name = "closing_balance")
-
 
50
	private float closingBalance;
-
 
51
	
48
	
52
	
49
	@Column(name = "total_commission")
53
	@Column(name = "total_commission")
50
	private float totalCommission;
54
	private float totalCommission;
51
 
55
 
52
 
56
 
Line 135... Line 139...
135
	}
139
	}
136
 
140
 
137
	@Override
141
	@Override
138
	public String toString() {
142
	public String toString() {
139
		return "DailyRecharge [providerId=" + providerId + ", createDate=" + createDate + ", openingBalance="
143
		return "DailyRecharge [providerId=" + providerId + ", createDate=" + createDate + ", openingBalance="
140
				+ openingBalance + ", closingBalance=" + closingBalance + ", totalAmount=" + totalAmount
144
				+ openingBalance + ", walletRechargeAmount=" + walletRechargeAmount + ", totalAmount=" + totalAmount
141
				+ ", totalCommission=" + totalCommission + "]";
145
				+ ", closingBalance=" + closingBalance + ", totalCommission=" + totalCommission + "]";
-
 
146
	}
-
 
147
 
-
 
148
	public void setWalletRechargeAmount(float walletRechargeAmount) {
-
 
149
		// TODO Auto-generated method stub
-
 
150
		
-
 
151
	}
-
 
152
 
-
 
153
	public float getWalletRechargeAmount() {
-
 
154
		return walletRechargeAmount;
142
	}
155
	}
143
        
156
        
144
}
157
}
145
158