Subversion Repositories SmartDukaan

Rev

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

Rev 23936 Rev 24089
Line 1... Line 1...
1
package com.spice.profitmandi.web.req;
1
package com.spice.profitmandi.web.req;
2
 
2
 
-
 
3
import java.time.LocalDate;
-
 
4
 
3
public class CreateAddMoneyRequest {
5
public class CreateAddMoneyRequest {
4
	private String transaction_reference;
6
	private String transaction_reference;
5
	private float amount;
7
	private float amount;
-
 
8
	private LocalDate reference_date;
6
	
9
	
-
 
10
	public LocalDate getReference_date() {
-
 
11
		return reference_date;
-
 
12
	}
-
 
13
	public void setReference_date(LocalDate reference_date) {
-
 
14
		this.reference_date = reference_date;
-
 
15
	}
7
	public String getTransaction_reference() {
16
	public String getTransaction_reference() {
8
		return transaction_reference;
17
		return transaction_reference;
9
	}
18
	}
10
	public void setTransaction_reference(String transaction_reference) {
19
	public void setTransaction_reference(String transaction_reference) {
11
		this.transaction_reference = transaction_reference;
20
		this.transaction_reference = transaction_reference;