Subversion Repositories SmartDukaan

Rev

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

Rev 10387 Rev 10390
Line 2... Line 2...
2
 
2
 
3
public class RechargePojo {
3
public class RechargePojo {
4
	private String date;
4
	private String date;
5
	private String operatorType;
5
	private String operatorType;
6
	private Long operatorId;
6
	private Long operatorId;
7
	private String orderId;
7
	private Long orderId;
-
 
8
	private String displayOrderId;
8
	private String number;
9
	private String number;
9
	private String operator;
10
	private String operator;
10
	private Long amount;
11
	private Long amount;
11
	private String status;
12
	private String status;
12
	private Boolean canRefund;
13
	private Boolean canRefund;
Line 14... Line 15...
14
		return date;
15
		return date;
15
	}
16
	}
16
	public void setDate(String date) {
17
	public void setDate(String date) {
17
		this.date = date;
18
		this.date = date;
18
	}
19
	}
19
	public String getOrderId() {
20
	public Long getOrderId() {
20
		return orderId;
21
		return orderId;
21
	}
22
	}
22
	public void setOrderId(String orderId) {
23
	public void setOrderId(Long orderId) {
23
		this.orderId = orderId;
24
		this.orderId = orderId;
24
	}
25
	}
25
	public String getNumber() {
26
	public String getNumber() {
26
		return number;
27
		return number;
27
	}
28
	}
Line 62... Line 63...
62
		this.operatorType = operatorType;
63
		this.operatorType = operatorType;
63
	}
64
	}
64
	public String getOperatorType() {
65
	public String getOperatorType() {
65
		return operatorType;
66
		return operatorType;
66
	}
67
	}
-
 
68
	public void setDisplayOrderId(String displayOrderId) {
-
 
69
		this.displayOrderId = displayOrderId;
-
 
70
	}
-
 
71
	public String getDisplayOrderId() {
-
 
72
		return displayOrderId;
-
 
73
	}
67
	
74
	
68
	
75
	
69
}
76
}
70
 
77