Subversion Repositories SmartDukaan

Rev

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