Subversion Repositories SmartDukaan

Rev

Rev 2209 | Rev 2509 | 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
 
167 ashish 46
	@SuppressWarnings("unused")
740 chandransh 47
	private Order(){}
484 rajveer 48
 
49
	public Order(long orderId, long customerId, String customerName,
50
			String customerMobileNumber, String customerPincode,
737 chandransh 51
			String customerAddress1, String customerAddress2, String customerCity, String customerState, String customerEmail, long createdOn,
484 rajveer 52
			long expectedDeliveryTime, long status, String statusMessage,
966 chandransh 53
			long itemId, String productGroup, String brand, String modelName,
914 chandransh 54
			String modelNumber, String color, String extraInfo, double totalAmount,
486 rajveer 55
			double totalWeight, String airwayBillNo, String billedBy,
2352 chandransh 56
			String invoiceNumber, long jacketNumber, long imeiNumber, long batchNo, long serialNo, boolean alert) {
484 rajveer 57
		super();
58
		this.orderId = orderId;
167 ashish 59
		this.customerId = customerId;
484 rajveer 60
		this.customerName = customerName;
61
		this.customerMobileNumber = customerMobileNumber;
62
		this.customerPincode = customerPincode;
737 chandransh 63
		this.customerAddress1 = customerAddress1;
740 chandransh 64
		this.customerAddress2 = customerAddress2;
671 chandransh 65
		this.customerCity = customerCity;
66
		this.customerState = customerState;
484 rajveer 67
		this.customerEmail = customerEmail;
167 ashish 68
		this.createdOn = createdOn;
69
		this.expectedDeliveryTime = expectedDeliveryTime;
740 chandransh 70
		this.status = status;
484 rajveer 71
		this.statusMessage = statusMessage;
740 chandransh 72
		this.itemId = itemId;
966 chandransh 73
		this.productGroup = productGroup;
74
		this.brand = brand;
484 rajveer 75
		this.modelName = modelName;
76
		this.modelNumber = modelNumber;
914 chandransh 77
		this.color = color;
484 rajveer 78
		this.extraInfo = extraInfo;
79
		this.totalAmount = totalAmount;
80
		this.totalWeight = totalWeight;
486 rajveer 81
		this.airwayBillNo = airwayBillNo;
82
		this.billedBy = billedBy;
639 chandransh 83
		this.invoiceNumber = invoiceNumber;
84
		this.jacketNumber = jacketNumber;
2352 chandransh 85
		this.imeiNumber = imeiNumber;
1224 chandransh 86
		this.batchNo = batchNo;
87
		this.serialNo = serialNo;
484 rajveer 88
		this.alert = alert;
167 ashish 89
	}
90
 
91
	public long getCustomerId() {
92
		return customerId;
93
	}
94
 
95
 
96
	public long getCreatedOn() {
97
		return createdOn;
98
	}
99
 
100
	public long getExpectedDeliveryTime() {
101
		return expectedDeliveryTime;
102
	}
103
 
306 ashish 104
	public void setStatusMessage(String message){
105
		this.statusMessage = message;
106
	}
107
 
167 ashish 108
	public String getStatusMessage() {
109
		return statusMessage;
306 ashish 110
	}
111
 
112
	public boolean isAlert() {
113
		return alert;
114
	}
115
 
116
	public void setAlert(boolean alert) {
117
		this.alert = alert;
118
	}
119
 
484 rajveer 120
	public void setOrderId(long orderId) {
121
		this.orderId = orderId;
306 ashish 122
	}
123
 
484 rajveer 124
	public long getOrderId() {
125
		return orderId;
306 ashish 126
	}
127
 
484 rajveer 128
	public void setCustomerName(String customerName) {
129
		this.customerName = customerName;
306 ashish 130
	}
131
 
484 rajveer 132
	public String getCustomerName() {
133
		return customerName;
134
	}
135
 
136
	public void setCustomerMobileNumber(String customerMobileNumber) {
137
		this.customerMobileNumber = customerMobileNumber;
138
	}
139
 
140
	public String getCustomerMobileNumber() {
141
		return customerMobileNumber;
142
	}
143
 
144
	public void setCustomerPincode(String customerPincode) {
145
		this.customerPincode = customerPincode;
146
	}
147
 
148
	public String getCustomerPincode() {
149
		return customerPincode;
150
	}
151
 
152
	public void setCustomerEmail(String customerEmail) {
153
		this.customerEmail = customerEmail;
154
	}
155
 
156
	public String getCustomerEmail() {
157
		return customerEmail;
158
	}
159
 
737 chandransh 160
	public void setCustomerAddress1(String customerAddress) {
161
		this.customerAddress1 = customerAddress;
484 rajveer 162
	}
163
 
737 chandransh 164
	public String getCustomerAddress1() {
165
		return customerAddress1;
484 rajveer 166
	}
737 chandransh 167
 
168
	public void setCustomerAddress2(String customerAddress2) {
169
		this.customerAddress2 = customerAddress2;
170
	}
484 rajveer 171
 
737 chandransh 172
	public String getCustomerAddress2() {
173
		return customerAddress2;
174
	}
175
 
671 chandransh 176
	public String getCustomerCity() {
177
		return customerCity;
178
	}
179
 
180
	public void setCustomerCity(String customerCity) {
181
		this.customerCity = customerCity;
182
	}
183
 
184
	public String getCustomerState() {
185
		return customerState;
186
	}
187
 
188
	public void setCustomerState(String customerState) {
189
		this.customerState = customerState;
190
	}
191
 
484 rajveer 192
	public void setModelName(String modelName) {
193
		this.modelName = modelName;
194
	}
195
 
196
	public String getModelName() {
197
		return modelName;
198
	}
199
 
200
	public void setTotalWeight(double totalWeight) {
201
		this.totalWeight = totalWeight;
202
	}
203
 
204
	public double getTotalWeight() {
205
		return totalWeight;
206
	}
207
 
208
	public void setTotalAmount(double totalAmount) {
209
		this.totalAmount = totalAmount;
210
	}
211
 
212
	public double getTotalAmount() {
213
		return totalAmount;
214
	}
215
 
706 chandransh 216
	public void setItemId(long itemId) {
217
		this.itemId = itemId;
218
	}
219
 
220
	public long getItemId() {
221
		return itemId;
222
	}
223
 
966 chandransh 224
	public void setProductGroup(String productGroup) {
225
		this.productGroup = productGroup;
484 rajveer 226
	}
227
 
966 chandransh 228
	public String getProductGroup() {
229
		return productGroup;
306 ashish 230
	}
231
 
966 chandransh 232
	public void setBrand(String brand) {
233
		this.brand = brand;
234
	}
235
 
236
	public String getBrand() {
237
		return brand;
238
	}
239
 
240
	public void setModelNumber(String modelNumber) {
241
		this.modelNumber = modelNumber;
242
	}
243
 
244
	public String getModelNumber() {
245
		return modelNumber;
246
	}
247
 
248
	public String getColor() {
249
		return color;
250
	}
251
 
252
	public void setColor(String color) {
253
		this.color = color;
254
	}
255
 
256
	public void setExtraInfo(String extraInfo) {
257
		this.extraInfo = extraInfo;
258
	}
259
 
260
	public String getExtraInfo() {
261
		return extraInfo;
262
	}
263
 
484 rajveer 264
	public void setStatus(long status) {
265
		this.status = status;
306 ashish 266
	}
267
 
484 rajveer 268
	public long getStatus() {
269
		return status;
270
	}
271
 
486 rajveer 272
	public void setAirwayBillNo(String airwayBillNo) {
273
		this.airwayBillNo = airwayBillNo;
274
	}
275
 
276
	public String getAirwayBillNo() {
277
		return airwayBillNo;
278
	}
279
 
280
	public void setBilledBy(String billedBy) {
281
		this.billedBy = billedBy;
282
	}
283
 
284
	public String getBilledBy() {
285
		return billedBy;
286
	}
287
 
288
	public void setInvoiceNumber(String invoiceNumber) {
289
		this.invoiceNumber = invoiceNumber;
290
	}
291
 
292
	public String getInvoiceNumber() {
293
		return invoiceNumber;
294
	}
295
 
639 chandransh 296
	public long getJacketNumber() {
297
		return jacketNumber;
298
	}
299
 
300
	public void setJacketNumber(long jacketNumber) {
301
		this.jacketNumber = jacketNumber;
302
	}
1224 chandransh 303
 
2352 chandransh 304
	public void setImeiNumber(long imeiNumber) {
305
		this.imeiNumber = imeiNumber;
306
	}
307
 
308
	public long getImeiNumber() {
309
		return imeiNumber;
310
	}
311
 
1224 chandransh 312
	public long getBatchNo() {
313
		return batchNo;
314
	}
315
 
316
	public void setBatchNo(long batchNo) {
317
		this.batchNo = batchNo;
318
	}
319
 
320
	public long getSerialNo() {
321
		return serialNo;
322
	}
323
 
324
	public void setSerialNo(long serialNo) {
325
		this.serialNo = serialNo;
326
	}
167 ashish 327
}