Subversion Repositories SmartDukaan

Rev

Rev 2352 | Rev 2781 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
167 ashish 1
package in.shop2020.hotspot.dashbaord.shared.actions;
2
 
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
 
5
public class Order implements IsSerializable{
6
 
7
	private static final long serialVersionUID = 5804421607858217477L;
8
 
484 rajveer 9
	private long orderId;
167 ashish 10
	private long customerId;
484 rajveer 11
	private String customerName;
12
	private String customerMobileNumber;
13
	private String customerPincode;
737 chandransh 14
	private String customerAddress1;
15
	private String customerAddress2;
671 chandransh 16
	private String customerCity;
17
	private String customerState;
484 rajveer 18
	private String customerEmail;
19
 
167 ashish 20
	private long createdOn;
21
	private long expectedDeliveryTime;
484 rajveer 22
 
23
	private long status;
167 ashish 24
	private String statusMessage;
25
 
706 chandransh 26
	private long itemId;
966 chandransh 27
	private String productGroup;
28
	private String brand;
484 rajveer 29
	private String modelName;
30
	private String modelNumber;
914 chandransh 31
	private String color;
484 rajveer 32
	private String extraInfo;
167 ashish 33
 
484 rajveer 34
	private double totalAmount;
35
	private double totalWeight;
306 ashish 36
 
486 rajveer 37
	private String airwayBillNo;
38
	private String billedBy;
39
	private String invoiceNumber;
639 chandransh 40
	private long jacketNumber;
2352 chandransh 41
	private long imeiNumber;
1224 chandransh 42
	private long batchNo;
43
	private long serialNo;
484 rajveer 44
	private boolean alert;
306 ashish 45
 
2509 chandransh 46
	private boolean doaFlag;
47
	private String pickupRequestNo;
48
 
167 ashish 49
	@SuppressWarnings("unused")
740 chandransh 50
	private Order(){}
484 rajveer 51
 
52
	public Order(long orderId, long customerId, String customerName,
53
			String customerMobileNumber, String customerPincode,
737 chandransh 54
			String customerAddress1, String customerAddress2, String customerCity, String customerState, String customerEmail, long createdOn,
484 rajveer 55
			long expectedDeliveryTime, long status, String statusMessage,
966 chandransh 56
			long itemId, String productGroup, String brand, String modelName,
914 chandransh 57
			String modelNumber, String color, String extraInfo, double totalAmount,
486 rajveer 58
			double totalWeight, String airwayBillNo, String billedBy,
2509 chandransh 59
			String invoiceNumber, long jacketNumber, long imeiNumber, long batchNo, long serialNo, boolean alert,
60
			boolean doaFlag, String pickupRequestNo) {
484 rajveer 61
		super();
62
		this.orderId = orderId;
167 ashish 63
		this.customerId = customerId;
484 rajveer 64
		this.customerName = customerName;
65
		this.customerMobileNumber = customerMobileNumber;
66
		this.customerPincode = customerPincode;
737 chandransh 67
		this.customerAddress1 = customerAddress1;
740 chandransh 68
		this.customerAddress2 = customerAddress2;
671 chandransh 69
		this.customerCity = customerCity;
70
		this.customerState = customerState;
484 rajveer 71
		this.customerEmail = customerEmail;
167 ashish 72
		this.createdOn = createdOn;
73
		this.expectedDeliveryTime = expectedDeliveryTime;
740 chandransh 74
		this.status = status;
484 rajveer 75
		this.statusMessage = statusMessage;
740 chandransh 76
		this.itemId = itemId;
966 chandransh 77
		this.productGroup = productGroup;
78
		this.brand = brand;
484 rajveer 79
		this.modelName = modelName;
80
		this.modelNumber = modelNumber;
914 chandransh 81
		this.color = color;
484 rajveer 82
		this.extraInfo = extraInfo;
83
		this.totalAmount = totalAmount;
84
		this.totalWeight = totalWeight;
486 rajveer 85
		this.airwayBillNo = airwayBillNo;
86
		this.billedBy = billedBy;
639 chandransh 87
		this.invoiceNumber = invoiceNumber;
88
		this.jacketNumber = jacketNumber;
2352 chandransh 89
		this.imeiNumber = imeiNumber;
1224 chandransh 90
		this.batchNo = batchNo;
91
		this.serialNo = serialNo;
484 rajveer 92
		this.alert = alert;
2509 chandransh 93
		this.doaFlag = doaFlag;
94
		this.pickupRequestNo = pickupRequestNo;
167 ashish 95
	}
96
 
97
	public long getCustomerId() {
98
		return customerId;
99
	}
100
 
101
 
102
	public long getCreatedOn() {
103
		return createdOn;
104
	}
105
 
106
	public long getExpectedDeliveryTime() {
107
		return expectedDeliveryTime;
108
	}
109
 
306 ashish 110
	public void setStatusMessage(String message){
111
		this.statusMessage = message;
112
	}
113
 
167 ashish 114
	public String getStatusMessage() {
115
		return statusMessage;
306 ashish 116
	}
117
 
118
	public boolean isAlert() {
119
		return alert;
120
	}
121
 
122
	public void setAlert(boolean alert) {
123
		this.alert = alert;
124
	}
125
 
484 rajveer 126
	public void setOrderId(long orderId) {
127
		this.orderId = orderId;
306 ashish 128
	}
129
 
484 rajveer 130
	public long getOrderId() {
131
		return orderId;
306 ashish 132
	}
133
 
484 rajveer 134
	public void setCustomerName(String customerName) {
135
		this.customerName = customerName;
306 ashish 136
	}
137
 
484 rajveer 138
	public String getCustomerName() {
139
		return customerName;
140
	}
141
 
142
	public void setCustomerMobileNumber(String customerMobileNumber) {
143
		this.customerMobileNumber = customerMobileNumber;
144
	}
145
 
146
	public String getCustomerMobileNumber() {
147
		return customerMobileNumber;
148
	}
149
 
150
	public void setCustomerPincode(String customerPincode) {
151
		this.customerPincode = customerPincode;
152
	}
153
 
154
	public String getCustomerPincode() {
155
		return customerPincode;
156
	}
157
 
158
	public void setCustomerEmail(String customerEmail) {
159
		this.customerEmail = customerEmail;
160
	}
161
 
162
	public String getCustomerEmail() {
163
		return customerEmail;
164
	}
165
 
737 chandransh 166
	public void setCustomerAddress1(String customerAddress) {
167
		this.customerAddress1 = customerAddress;
484 rajveer 168
	}
169
 
737 chandransh 170
	public String getCustomerAddress1() {
171
		return customerAddress1;
484 rajveer 172
	}
737 chandransh 173
 
174
	public void setCustomerAddress2(String customerAddress2) {
175
		this.customerAddress2 = customerAddress2;
176
	}
484 rajveer 177
 
737 chandransh 178
	public String getCustomerAddress2() {
179
		return customerAddress2;
180
	}
181
 
671 chandransh 182
	public String getCustomerCity() {
183
		return customerCity;
184
	}
185
 
186
	public void setCustomerCity(String customerCity) {
187
		this.customerCity = customerCity;
188
	}
189
 
190
	public String getCustomerState() {
191
		return customerState;
192
	}
193
 
194
	public void setCustomerState(String customerState) {
195
		this.customerState = customerState;
196
	}
197
 
484 rajveer 198
	public void setModelName(String modelName) {
199
		this.modelName = modelName;
200
	}
201
 
202
	public String getModelName() {
203
		return modelName;
204
	}
205
 
206
	public void setTotalWeight(double totalWeight) {
207
		this.totalWeight = totalWeight;
208
	}
209
 
210
	public double getTotalWeight() {
211
		return totalWeight;
212
	}
213
 
214
	public void setTotalAmount(double totalAmount) {
215
		this.totalAmount = totalAmount;
216
	}
217
 
218
	public double getTotalAmount() {
219
		return totalAmount;
220
	}
221
 
706 chandransh 222
	public void setItemId(long itemId) {
223
		this.itemId = itemId;
224
	}
225
 
226
	public long getItemId() {
227
		return itemId;
228
	}
229
 
966 chandransh 230
	public void setProductGroup(String productGroup) {
231
		this.productGroup = productGroup;
484 rajveer 232
	}
233
 
966 chandransh 234
	public String getProductGroup() {
235
		return productGroup;
306 ashish 236
	}
237
 
966 chandransh 238
	public void setBrand(String brand) {
239
		this.brand = brand;
240
	}
241
 
242
	public String getBrand() {
243
		return brand;
244
	}
245
 
246
	public void setModelNumber(String modelNumber) {
247
		this.modelNumber = modelNumber;
248
	}
249
 
250
	public String getModelNumber() {
251
		return modelNumber;
252
	}
253
 
254
	public String getColor() {
255
		return color;
256
	}
257
 
258
	public void setColor(String color) {
259
		this.color = color;
260
	}
261
 
262
	public void setExtraInfo(String extraInfo) {
263
		this.extraInfo = extraInfo;
264
	}
265
 
266
	public String getExtraInfo() {
267
		return extraInfo;
268
	}
269
 
484 rajveer 270
	public void setStatus(long status) {
271
		this.status = status;
306 ashish 272
	}
273
 
484 rajveer 274
	public long getStatus() {
275
		return status;
276
	}
277
 
486 rajveer 278
	public void setAirwayBillNo(String airwayBillNo) {
279
		this.airwayBillNo = airwayBillNo;
280
	}
281
 
282
	public String getAirwayBillNo() {
283
		return airwayBillNo;
284
	}
285
 
286
	public void setBilledBy(String billedBy) {
287
		this.billedBy = billedBy;
288
	}
289
 
290
	public String getBilledBy() {
291
		return billedBy;
292
	}
293
 
294
	public void setInvoiceNumber(String invoiceNumber) {
295
		this.invoiceNumber = invoiceNumber;
296
	}
297
 
298
	public String getInvoiceNumber() {
299
		return invoiceNumber;
300
	}
301
 
639 chandransh 302
	public long getJacketNumber() {
303
		return jacketNumber;
304
	}
305
 
306
	public void setJacketNumber(long jacketNumber) {
307
		this.jacketNumber = jacketNumber;
308
	}
1224 chandransh 309
 
2352 chandransh 310
	public void setImeiNumber(long imeiNumber) {
311
		this.imeiNumber = imeiNumber;
312
	}
313
 
314
	public long getImeiNumber() {
315
		return imeiNumber;
316
	}
317
 
1224 chandransh 318
	public long getBatchNo() {
319
		return batchNo;
320
	}
321
 
322
	public void setBatchNo(long batchNo) {
323
		this.batchNo = batchNo;
324
	}
325
 
326
	public long getSerialNo() {
327
		return serialNo;
328
	}
329
 
330
	public void setSerialNo(long serialNo) {
331
		this.serialNo = serialNo;
332
	}
2509 chandransh 333
 
334
	public void setDoaFlag(boolean doaFlag) {
335
		this.doaFlag = doaFlag;
336
	}
337
 
338
	public boolean isDoaFlag() {
339
		return doaFlag;
340
	}
341
 
342
	public void setPickupRequestNo(String pickupRequestNo) {
343
		this.pickupRequestNo = pickupRequestNo;
344
	}
345
 
346
	public String getPickupRequestNo() {
347
		return pickupRequestNo;
348
	}
167 ashish 349
}