Subversion Repositories SmartDukaan

Rev

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

Rev 9642 Rev 9772
Line 1... Line 1...
1
package in.shop2020.mobileapi.serving.pojos;
1
package in.shop2020.mobileapi.serving.pojos;
2
 
2
 
3
 
3
 
4
public class OrderPojo {
4
public class OrderPojo {
5
	private long orderId;
5
	private long orderId;
6
	private String price;
6
	private String unitPrice;
-
 
7
	private String totalAmount;
-
 
8
	private String gvAmount;
-
 
9
	private String dataProtectionAmount;
-
 
10
	private String insuranceAmount;
-
 
11
	private String itemName;
-
 
12
	private int quantity;
7
	private String orderedOn;
13
	private String orderedOn;
-
 
14
	private String promisedDelivery;
-
 
15
	private String firstDeliveryAttempted;
8
	private String courierUrl;
16
	private String courierUrl;
9
	private String orderUrl;
17
	private String orderUrl;
10
	private String status;
18
	private String status;
11
	private String courierName;
19
	private String courierName;
12
	private String awbNumber;
20
	private String awbNumber;
Line 14... Line 22...
14
		this.orderId = orderId;
22
		this.orderId = orderId;
15
	}
23
	}
16
	public long getOrderId() {
24
	public long getOrderId() {
17
		return orderId;
25
		return orderId;
18
	}
26
	}
19
	public String getPrice() {
-
 
20
		return price;
-
 
21
	}
-
 
22
	public void setOrderedOn(String orderedOn) {
27
	public void setOrderedOn(String orderedOn) {
23
		this.orderedOn = orderedOn;
28
		this.orderedOn = orderedOn;
24
	}
29
	}
25
	public String getOrderedOn() {
30
	public String getOrderedOn() {
26
		return orderedOn;
31
		return orderedOn;
Line 54... Line 59...
54
		this.orderUrl = orderUrl;
59
		this.orderUrl = orderUrl;
55
	}
60
	}
56
	public String getOrderUrl() {
61
	public String getOrderUrl() {
57
		return orderUrl;
62
		return orderUrl;
58
	}
63
	}
-
 
64
	
-
 
65
	public void setItemName(String itemName) {
-
 
66
		this.itemName = itemName;
-
 
67
	}
-
 
68
	public String getItemName() {
-
 
69
		return itemName;
-
 
70
	}
-
 
71
	public void setQuantity(int quantity) {
-
 
72
		this.quantity = quantity;
-
 
73
	}
-
 
74
	public int getQuantity() {
-
 
75
		return quantity;
-
 
76
	}
-
 
77
	public void setPromisedDelivery(String promisedDelivery) {
-
 
78
		this.promisedDelivery = promisedDelivery;
-
 
79
	}
-
 
80
	public String getPromisedDelivery() {
-
 
81
		return promisedDelivery;
-
 
82
	}
-
 
83
	public void setFirstDeliveryAttempted(String firstDeliveryAttempted) {
-
 
84
		this.firstDeliveryAttempted = firstDeliveryAttempted;
-
 
85
	}
-
 
86
	public String getFirstDeliveryAttempted() {
-
 
87
		return firstDeliveryAttempted;
-
 
88
	}
-
 
89
	public void setTotalAmount(String totalAmount) {
-
 
90
		this.totalAmount = totalAmount;
-
 
91
	}
-
 
92
	public String getTotalAmount() {
-
 
93
		return totalAmount;
-
 
94
	}
-
 
95
	public void setGvAmount(String gvAmount) {
-
 
96
		this.gvAmount = gvAmount;
-
 
97
	}
-
 
98
	public String getGvAmount() {
-
 
99
		return gvAmount;
-
 
100
	}
-
 
101
	public void setDataProtectionAmount(String dataProtectionAmount) {
-
 
102
		this.dataProtectionAmount = dataProtectionAmount;
-
 
103
	}
-
 
104
	public String getDataProtectionAmount() {
-
 
105
		return dataProtectionAmount;
-
 
106
	}
-
 
107
	public void setInsuranceAmount(String insuranceAmount) {
-
 
108
		this.insuranceAmount = insuranceAmount;
-
 
109
	}
-
 
110
	public String getInsuranceAmount() {
-
 
111
		return insuranceAmount;
-
 
112
	}
59
	public void setPrice(String price) {
113
	public void setUnitPrice(String unitPrice) {
60
		this.price = price;
114
		this.unitPrice = unitPrice;
-
 
115
	}
-
 
116
	public String getUnitPrice() {
-
 
117
		return unitPrice;
61
	}
118
	}
62
}
119
}