Subversion Repositories SmartDukaan

Rev

Rev 10387 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10362 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
2
 
3
public class RechargePojo {
4
	private String date;
10387 amit.gupta 5
	private String operatorType;
6
	private Long operatorId;
10390 amit.gupta 7
	private Long orderId;
8
	private String displayOrderId;
10362 amit.gupta 9
	private String number;
10
	private String operator;
11
	private Long amount;
12
	private String status;
13
	private Boolean canRefund;
14
	public String getDate() {
15
		return date;
16
	}
17
	public void setDate(String date) {
18
		this.date = date;
19
	}
10390 amit.gupta 20
	public Long getOrderId() {
10362 amit.gupta 21
		return orderId;
22
	}
10390 amit.gupta 23
	public void setOrderId(Long orderId) {
10362 amit.gupta 24
		this.orderId = orderId;
25
	}
26
	public String getNumber() {
27
		return number;
28
	}
29
	public void setNumber(String number) {
30
		this.number = number;
31
	}
32
	public String getOperator() {
33
		return operator;
34
	}
35
	public void setOperator(String operator) {
36
		this.operator = operator;
37
	}
38
	public Long getAmount() {
39
		return amount;
40
	}
41
	public void setAmount(Long amount) {
42
		this.amount = amount;
43
	}
44
	public String getStatus() {
45
		return status;
46
	}
47
	public void setStatus(String status) {
48
		this.status = status;
49
	}
50
	public Boolean getCanRefund() {
51
		return canRefund;
52
	}
53
	public void setCanRefund(Boolean canRefund) {
54
		this.canRefund = canRefund;
55
	}
10387 amit.gupta 56
	public void setOperatorId(Long operatorId) {
57
		this.operatorId = operatorId;
58
	}
59
	public Long getOperatorId() {
60
		return operatorId;
61
	}
62
	public void setOperatorType(String operatorType) {
63
		this.operatorType = operatorType;
64
	}
65
	public String getOperatorType() {
66
		return operatorType;
67
	}
10390 amit.gupta 68
	public void setDisplayOrderId(String displayOrderId) {
69
		this.displayOrderId = displayOrderId;
70
	}
71
	public String getDisplayOrderId() {
72
		return displayOrderId;
73
	}
10362 amit.gupta 74
 
75
 
76
}
77