Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
37080 amit 1
package com.spice.profitmandi.dao.service.biuedart;
2
 
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
5
 
6
import java.time.LocalDate;
7
import java.util.ArrayList;
8
import java.util.Date;
9
import java.util.List;
10
 
11
class Services {
12
    @JsonProperty("AWBNo")
13
    private String awbNo = "";
14
 
15
    @JsonProperty("ActualWeight")
16
    private String actualWeight = "";
17
 
18
    @JsonProperty("CollectableAmount")
19
    private int collectableAmount;
20
 
21
    @JsonProperty("Commodity")
22
    private Commodity commodity = new Commodity();
23
 
24
    @JsonProperty("CreditReferenceNo")
25
    private String creditReferenceNo = "";
26
 
27
    @JsonProperty("CreditReferenceNo2")
28
    private String creditReferenceNo2 = "";
29
 
30
    @JsonProperty("CreditReferenceNo3")
31
    private String creditReferenceNo3 = "";
32
 
33
    @JsonProperty("CurrencyCode")
34
    private String currencyCode = "";
35
 
36
    @JsonProperty("DeclaredValue")
37
    private double declaredValue;
38
 
39
    @JsonProperty("DeliveryTimeSlot")
40
    private String deliveryTimeSlot = "";
41
 
42
    @JsonProperty("Dimensions")
43
    private List<Dimension> dimensions;
44
 
45
    @JsonProperty("FavouringName")
46
    private String favouringName = "";
47
 
48
    @JsonProperty("ForwardAWBNo")
49
    private String forwardAWBNo = "";
50
 
51
    @JsonProperty("ForwardLogisticCompName")
52
    private String forwardLogisticCompName = "";
53
 
54
    @JsonProperty("InsurancePaidBy")
55
    private String insurancePaidBy = "";
56
 
57
    @JsonProperty("InvoiceNo")
58
    private String invoiceNo = "";
59
 
60
    @JsonProperty("IsChequeDD")
61
    private String isChequeDD = "";
62
 
63
    @JsonProperty("IsDedicatedDeliveryNetwork")
64
    private boolean isDedicatedDeliveryNetwork;
65
 
66
    @JsonProperty("IsForcePickup")
67
    private boolean forcePickup;
68
 
69
    @JsonProperty("IsPartialPickup")
70
    private boolean partialPickup;
71
 
72
    @JsonProperty("IsReversePickup")
73
    private boolean reversePickup;
74
 
75
    @JsonProperty("ItemCount")
76
    private int itemCount;
77
 
78
    @JsonProperty("OTPBasedDelivery")
79
    private String otpBasedDelivery = "";
80
 
81
    @JsonProperty("OTPCode")
82
    private String otpCode = "";
83
 
84
    @JsonProperty("Officecutofftime")
85
    private String officeCutoffTime = "";
86
 
87
    @JsonProperty("PDFOutputNotRequired")
88
    private boolean pdfOutputNotRequired;
89
 
90
    @JsonProperty("PackType")
91
    private String packType = "";
92
 
93
    @JsonProperty("ParcelShopCode")
94
    private String parcelShopCode = "";
95
 
96
    @JsonProperty("PayableAt")
97
    private String payableAt = "";
98
 
99
    @JsonProperty("PickupDate")
100
    @JsonSerialize(using = CustomDateSerializer.class)
101
    private LocalDate pickupDate;
102
 
103
    @JsonProperty("PickupMode")
104
    private String pickupMode = "";
105
 
106
    @JsonProperty("PickupTime")
107
    private String pickupTime = "";
108
 
109
    @JsonProperty("PickupType")
110
    private String pickupType = "";
111
 
112
    @JsonProperty("PieceCount")
113
    private String pieceCount = "";
114
 
115
    @JsonProperty("PreferredPickupTimeSlot")
116
    private String preferredPickupTimeSlot = "";
117
 
118
    @JsonProperty("ProductCode")
119
    private String productCode = "";
120
 
121
    @JsonProperty("ProductFeature")
122
    private String productFeature = "";
123
 
124
    @JsonProperty("ProductType")
125
    private int productType;
126
 
127
    @JsonProperty("RegisterPickup")
128
    private boolean registerPickup;
129
 
130
    @JsonProperty("SpecialInstruction")
131
    private String specialInstruction = "";
132
 
133
    @JsonProperty("SubProductCode")
134
    private String subProductCode = "";
135
 
136
    @JsonProperty("SupplyOfIGST")
137
    private String supplyOfIGST = "";
138
 
139
    @JsonProperty("SupplyOfwoIGST")
140
    private String supplyOfwoIGST = "";
141
 
142
    @JsonProperty("TermsOfTrade")
143
    private String termsOfTrade = "";
144
 
145
    @JsonProperty("TotalCashPaytoCustomer")
146
    private int totalCashPaytoCustomer;
147
 
148
    @JsonProperty("itemdtl")
149
    private List<ItemDetail> itemDetails = new ArrayList<>();
150
 
151
    @JsonProperty("noOfDCGiven")
152
    private int noOfDCGiven;
153
 
154
    public String getAwbNo() {
155
        return awbNo;
156
    }
157
 
158
    public void setAwbNo(String awbNo) {
159
        this.awbNo = awbNo;
160
    }
161
 
162
    public String getActualWeight() {
163
        return actualWeight;
164
    }
165
 
166
    public void setActualWeight(String actualWeight) {
167
        this.actualWeight = actualWeight;
168
    }
169
 
170
    public int getCollectableAmount() {
171
        return collectableAmount;
172
    }
173
 
174
    public void setCollectableAmount(int collectableAmount) {
175
        this.collectableAmount = collectableAmount;
176
    }
177
 
178
    public Commodity getCommodity() {
179
        return commodity;
180
    }
181
 
182
    public void setCommodity(Commodity commodity) {
183
        this.commodity = commodity;
184
    }
185
 
186
    public String getCreditReferenceNo() {
187
        return creditReferenceNo;
188
    }
189
 
190
    public void setCreditReferenceNo(String creditReferenceNo) {
191
        this.creditReferenceNo = creditReferenceNo;
192
    }
193
 
194
    public String getCreditReferenceNo2() {
195
        return creditReferenceNo2;
196
    }
197
 
198
    public void setCreditReferenceNo2(String creditReferenceNo2) {
199
        this.creditReferenceNo2 = creditReferenceNo2;
200
    }
201
 
202
    public String getCreditReferenceNo3() {
203
        return creditReferenceNo3;
204
    }
205
 
206
    public void setCreditReferenceNo3(String creditReferenceNo3) {
207
        this.creditReferenceNo3 = creditReferenceNo3;
208
    }
209
 
210
    public String getCurrencyCode() {
211
        return currencyCode;
212
    }
213
 
214
    public void setCurrencyCode(String currencyCode) {
215
        this.currencyCode = currencyCode;
216
    }
217
 
218
    public double getDeclaredValue() {
219
        return declaredValue;
220
    }
221
 
222
    public void setDeclaredValue(double declaredValue) {
223
        this.declaredValue = declaredValue;
224
    }
225
 
226
    public String getDeliveryTimeSlot() {
227
        return deliveryTimeSlot;
228
    }
229
 
230
    public void setDeliveryTimeSlot(String deliveryTimeSlot) {
231
        this.deliveryTimeSlot = deliveryTimeSlot;
232
    }
233
 
234
    public List<Dimension> getDimensions() {
235
        return dimensions;
236
    }
237
 
238
    public void setDimensions(List<Dimension> dimensions) {
239
        this.dimensions = dimensions;
240
    }
241
 
242
    public String getFavouringName() {
243
        return favouringName;
244
    }
245
 
246
    public void setFavouringName(String favouringName) {
247
        this.favouringName = favouringName;
248
    }
249
 
250
    public String getForwardAWBNo() {
251
        return forwardAWBNo;
252
    }
253
 
254
    public void setForwardAWBNo(String forwardAWBNo) {
255
        this.forwardAWBNo = forwardAWBNo;
256
    }
257
 
258
    public String getForwardLogisticCompName() {
259
        return forwardLogisticCompName;
260
    }
261
 
262
    public void setForwardLogisticCompName(String forwardLogisticCompName) {
263
        this.forwardLogisticCompName = forwardLogisticCompName;
264
    }
265
 
266
    public String getInsurancePaidBy() {
267
        return insurancePaidBy;
268
    }
269
 
270
    public void setInsurancePaidBy(String insurancePaidBy) {
271
        this.insurancePaidBy = insurancePaidBy;
272
    }
273
 
274
    public String getInvoiceNo() {
275
        return invoiceNo;
276
    }
277
 
278
    public void setInvoiceNo(String invoiceNo) {
279
        this.invoiceNo = invoiceNo;
280
    }
281
 
282
    public String getIsChequeDD() {
283
        return isChequeDD;
284
    }
285
 
286
    public void setIsChequeDD(String isChequeDD) {
287
        this.isChequeDD = isChequeDD;
288
    }
289
 
290
    public boolean dedicatedDeliveryNetwork() {
291
        return isDedicatedDeliveryNetwork;
292
    }
293
 
294
    public void setDedicatedDeliveryNetwork(boolean dedicatedDeliveryNetwork) {
295
        isDedicatedDeliveryNetwork = dedicatedDeliveryNetwork;
296
    }
297
 
298
    public boolean isForcePickup() {
299
        return forcePickup;
300
    }
301
 
302
    public void setForcePickup(boolean forcePickup) {
303
        forcePickup = forcePickup;
304
    }
305
 
306
    public boolean isPartialPickup() {
307
        return partialPickup;
308
    }
309
 
310
    public void setPartialPickup(boolean partialPickup) {
311
        partialPickup = partialPickup;
312
    }
313
 
314
    public boolean isReversePickup() {
315
        return reversePickup;
316
    }
317
 
318
    public void setReversePickup(boolean reversePickup) {
319
        reversePickup = reversePickup;
320
    }
321
 
322
    public int getItemCount() {
323
        return itemCount;
324
    }
325
 
326
    public void setItemCount(int itemCount) {
327
        this.itemCount = itemCount;
328
    }
329
 
330
    public String getOtpBasedDelivery() {
331
        return otpBasedDelivery;
332
    }
333
 
334
    public void setOtpBasedDelivery(String otpBasedDelivery) {
335
        this.otpBasedDelivery = otpBasedDelivery;
336
    }
337
 
338
    public String getOtpCode() {
339
        return otpCode;
340
    }
341
 
342
    public void setOtpCode(String otpCode) {
343
        this.otpCode = otpCode;
344
    }
345
 
346
    public String getOfficeCutoffTime() {
347
        return officeCutoffTime;
348
    }
349
 
350
    public void setOfficeCutoffTime(String officeCutoffTime) {
351
        this.officeCutoffTime = officeCutoffTime;
352
    }
353
 
354
    public boolean isPdfOutputNotRequired() {
355
        return pdfOutputNotRequired;
356
    }
357
 
358
    public void setPdfOutputNotRequired(boolean pdfOutputNotRequired) {
359
        this.pdfOutputNotRequired = pdfOutputNotRequired;
360
    }
361
 
362
    public String getPackType() {
363
        return packType;
364
    }
365
 
366
    public void setPackType(String packType) {
367
        this.packType = packType;
368
    }
369
 
370
    public String getParcelShopCode() {
371
        return parcelShopCode;
372
    }
373
 
374
    public void setParcelShopCode(String parcelShopCode) {
375
        this.parcelShopCode = parcelShopCode;
376
    }
377
 
378
    public String getPayableAt() {
379
        return payableAt;
380
    }
381
 
382
    public void setPayableAt(String payableAt) {
383
        this.payableAt = payableAt;
384
    }
385
 
386
    public LocalDate getPickupDate() {
387
        return pickupDate;
388
    }
389
 
390
    public void setPickupDate(LocalDate pickupDate) {
391
        this.pickupDate = pickupDate;
392
    }
393
 
394
    public String getPickupMode() {
395
        return pickupMode;
396
    }
397
 
398
    public void setPickupMode(String pickupMode) {
399
        this.pickupMode = pickupMode;
400
    }
401
 
402
    public String getPickupTime() {
403
        return pickupTime;
404
    }
405
 
406
    public void setPickupTime(String pickupTime) {
407
        this.pickupTime = pickupTime;
408
    }
409
 
410
    public String getPickupType() {
411
        return pickupType;
412
    }
413
 
414
    public void setPickupType(String pickupType) {
415
        this.pickupType = pickupType;
416
    }
417
 
418
    public String getPieceCount() {
419
        return pieceCount;
420
    }
421
 
422
    public void setPieceCount(String pieceCount) {
423
        this.pieceCount = pieceCount;
424
    }
425
 
426
    public String getPreferredPickupTimeSlot() {
427
        return preferredPickupTimeSlot;
428
    }
429
 
430
    public void setPreferredPickupTimeSlot(String preferredPickupTimeSlot) {
431
        this.preferredPickupTimeSlot = preferredPickupTimeSlot;
432
    }
433
 
434
    public String getProductCode() {
435
        return productCode;
436
    }
437
 
438
    public void setProductCode(String productCode) {
439
        this.productCode = productCode;
440
    }
441
 
442
    public String getProductFeature() {
443
        return productFeature;
444
    }
445
 
446
    public void setProductFeature(String productFeature) {
447
        this.productFeature = productFeature;
448
    }
449
 
450
    public int getProductType() {
451
        return productType;
452
    }
453
 
454
    public void setProductType(int productType) {
455
        this.productType = productType;
456
    }
457
 
458
    public boolean isRegisterPickup() {
459
        return registerPickup;
460
    }
461
 
462
    public void setRegisterPickup(boolean registerPickup) {
463
        this.registerPickup = registerPickup;
464
    }
465
 
466
    public String getSpecialInstruction() {
467
        return specialInstruction;
468
    }
469
 
470
    public void setSpecialInstruction(String specialInstruction) {
471
        this.specialInstruction = specialInstruction;
472
    }
473
 
474
    public String getSubProductCode() {
475
        return subProductCode;
476
    }
477
 
478
    public void setSubProductCode(String subProductCode) {
479
        this.subProductCode = subProductCode;
480
    }
481
 
482
    public String getSupplyOfIGST() {
483
        return supplyOfIGST;
484
    }
485
 
486
    public void setSupplyOfIGST(String supplyOfIGST) {
487
        this.supplyOfIGST = supplyOfIGST;
488
    }
489
 
490
    public String getSupplyOfwoIGST() {
491
        return supplyOfwoIGST;
492
    }
493
 
494
    public void setSupplyOfwoIGST(String supplyOfwoIGST) {
495
        this.supplyOfwoIGST = supplyOfwoIGST;
496
    }
497
 
498
    public String getTermsOfTrade() {
499
        return termsOfTrade;
500
    }
501
 
502
    public void setTermsOfTrade(String termsOfTrade) {
503
        this.termsOfTrade = termsOfTrade;
504
    }
505
 
506
    public int getTotalCashPaytoCustomer() {
507
        return totalCashPaytoCustomer;
508
    }
509
 
510
    public void setTotalCashPaytoCustomer(int totalCashPaytoCustomer) {
511
        this.totalCashPaytoCustomer = totalCashPaytoCustomer;
512
    }
513
 
514
    public List<ItemDetail> getItemDetails() {
515
        return itemDetails;
516
    }
517
 
518
    public void setItemDetails(List<ItemDetail> itemDetails) {
519
        this.itemDetails = itemDetails;
520
    }
521
 
522
    public int getNoOfDCGiven() {
523
        return noOfDCGiven;
524
    }
525
 
526
    public void setNoOfDCGiven(int noOfDCGiven) {
527
        this.noOfDCGiven = noOfDCGiven;
528
    }
529
 
530
    // Constructors, getters, and setters
531
}