Subversion Repositories SmartDukaan

Rev

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

Rev 10362 Rev 10387
Line 1... Line 1...
1
package in.shop2020.mobileapi.serving.pojos;
1
package in.shop2020.mobileapi.serving.pojos;
2
 
2
 
3
public class RechargePojo {
3
public class RechargePojo {
4
	private String date;
4
	private String date;
-
 
5
	private String operatorType;
-
 
6
	private Long operatorId;
5
	private String orderId;
7
	private String orderId;
6
	private String number;
8
	private String number;
7
	private String operator;
9
	private String operator;
8
	private Long amount;
10
	private Long amount;
9
	private String status;
11
	private String status;
Line 48... Line 50...
48
		return canRefund;
50
		return canRefund;
49
	}
51
	}
50
	public void setCanRefund(Boolean canRefund) {
52
	public void setCanRefund(Boolean canRefund) {
51
		this.canRefund = canRefund;
53
		this.canRefund = canRefund;
52
	}
54
	}
-
 
55
	public void setOperatorId(Long operatorId) {
-
 
56
		this.operatorId = operatorId;
-
 
57
	}
-
 
58
	public Long getOperatorId() {
-
 
59
		return operatorId;
-
 
60
	}
-
 
61
	public void setOperatorType(String operatorType) {
-
 
62
		this.operatorType = operatorType;
-
 
63
	}
-
 
64
	public String getOperatorType() {
-
 
65
		return operatorType;
-
 
66
	}
53
	
67
	
54
	
68
	
55
}
69
}
56
 
70