Completed
Push — master ( f18332...65e840 )
by Gabriel
03:52
created

OrderEntity::getBillOfLading()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace ThreePlCentral\Order;
4
5
class OrderEntity
6
{
7
    private $customerName;
8
    private $customerEmail;
9
    private $customerPhone;
10
    private $facility;
11
    private $facilityID;
12
    private $warehouseTransactionID;
13
    private $referenceNum;
14
    private $pONum;
15
    private $retailer;
16
    private $shipToCompanyName;
17
    private $shipToName;
18
    private $shipToEmail;
19
    private $shipToPhone;
20
    private $shipToAddress1;
21
    private $shipToAddress2;
22
    private $shipToCity;
23
    private $shipToState;
24
    private $shipToZip;
25
    private $shipToCountry;
26
    private $shipMethod;
27
    private $markForName;
28
    private $batchOrderID;
29
    private $creationDate;
30
    private $earliestShipDate;
31
    private $shipCancelDate;
32
    private $pickupDate;
33
    private $carrier;
34
    private $billingCode;
35
    private $totWeight;
36
    private $totCuFt;
37
    private $totPackages;
38
    private $totOrdQty;
39
    private $totLines;
40
    private $notes;
41
    private $overAllocated;
42
    private $pickTicketPrintDate;
43
    private $processDate;
44
    private $trackingNumber;
45
    private $loadNumber;
46
    private $billOfLading;
47
    private $masterBillOfLading;
48
    private $aSNSentDate;
49
    private $confirmASNSentDate;
50
    private $rememberRowInfo;
51
52
    public function getCustomerName(): string
53
    {
54
        return $this->customerName;
55
    }
56
57
    public function setCustomerName(string $customerName)
58
    {
59
        $this->customerName = $customerName;
60
    }
61
62
    public function getCustomerEmail(): string
63
    {
64
        return $this->customerEmail;
65
    }
66
67
    public function setCustomerEmail(string $customerEmail)
68
    {
69
        $this->customerEmail = $customerEmail;
70
    }
71
72
    public function getCustomerPhone(): string
73
    {
74
        return $this->customerPhone;
75
    }
76
77
    public function setCustomerPhone(string $customerPhone)
78
    {
79
        $this->customerPhone = $customerPhone;
80
    }
81
82
    public function getFacility(): string
83
    {
84
        return $this->facility;
85
    }
86
87
    public function setFacility(string $facility)
88
    {
89
        $this->facility = $facility;
90
    }
91
92
    public function getFacilityID(): string
93
    {
94
        return $this->facilityID;
95
    }
96
97
    public function setFacilityID(string $facilityID)
98
    {
99
        $this->facilityID = $facilityID;
100
    }
101
102
    public function getWarehouseTransactionID(): string
103
    {
104
        return $this->warehouseTransactionID;
105
    }
106
107
    public function setWarehouseTransactionID(string $warehouseTransactionID)
108
    {
109
        $this->warehouseTransactionID = $warehouseTransactionID;
110
    }
111
112
    public function getReferenceNum(): string
113
    {
114
        return $this->referenceNum;
115
    }
116
117
    public function setReferenceNum(string $referenceNum)
118
    {
119
        $this->referenceNum = $referenceNum;
120
    }
121
122
    public function getPONum(): string
123
    {
124
        return $this->pONum;
125
    }
126
127
    public function setPONum(string $pONum)
128
    {
129
        $this->pONum = $pONum;
130
    }
131
132
    public function getRetailer(): string
133
    {
134
        return $this->retailer;
135
    }
136
137
    public function setRetailer(string $retailer)
138
    {
139
        $this->retailer = $retailer;
140
    }
141
142
    public function getShipToCompanyName(): string
143
    {
144
        return $this->shipToCompanyName;
145
    }
146
147
    public function setShipToCompanyName(string $shipToCompanyName)
148
    {
149
        $this->shipToCompanyName = $shipToCompanyName;
150
    }
151
152
    public function getShipToName(): string
153
    {
154
        return $this->shipToName;
155
    }
156
157
    public function setShipToName(string $shipToName)
158
    {
159
        $this->shipToName = $shipToName;
160
    }
161
162
    public function getShipToEmail(): string
163
    {
164
        return $this->shipToEmail;
165
    }
166
167
    public function setShipToEmail(string $shipToEmail)
168
    {
169
        $this->shipToEmail = $shipToEmail;
170
    }
171
172
    public function getShipToPhone(): string
173
    {
174
        return $this->shipToPhone;
175
    }
176
177
    public function setShipToPhone(string $shipToPhone)
178
    {
179
        $this->shipToPhone = $shipToPhone;
180
    }
181
182
    public function getShipToAddress1(): string
183
    {
184
        return $this->shipToAddress1;
185
    }
186
187
    public function setShipToAddress1(string $shipToAddress1)
188
    {
189
        $this->shipToAddress1 = $shipToAddress1;
190
    }
191
192
    public function getShipToAddress2(): string
193
    {
194
        return $this->shipToAddress2;
195
    }
196
197
    public function setShipToAddress2(string $shipToAddress2)
198
    {
199
        $this->shipToAddress2 = $shipToAddress2;
200
    }
201
202
    public function getShipToCity(): string
203
    {
204
        return $this->shipToCity;
205
    }
206
207
    public function setShipToCity(string $shipToCity)
208
    {
209
        $this->shipToCity = $shipToCity;
210
    }
211
212
    public function getShipToState(): string
213
    {
214
        return $this->shipToState;
215
    }
216
217
    public function setShipToState(string $shipToState)
218
    {
219
        $this->shipToState = $shipToState;
220
    }
221
222
    public function getShipToZip(): string
223
    {
224
        return $this->shipToZip;
225
    }
226
227
    public function setShipToZip(string $shipToZip)
228
    {
229
        $this->shipToZip = $shipToZip;
230
    }
231
232
    public function getShipToCountry(): string
233
    {
234
        return $this->shipToCountry;
235
    }
236
237
    public function setShipToCountry(string $shipToCountry)
238
    {
239
        $this->shipToCountry = $shipToCountry;
240
    }
241
242
    public function getShipMethod(): string
243
    {
244
        return $this->shipMethod;
245
    }
246
247
    public function setShipMethod(string $shipMethod)
248
    {
249
        $this->shipMethod = $shipMethod;
250
    }
251
252
    public function getMarkForName(): string
253
    {
254
        return $this->markForName;
255
    }
256
257
    public function setMarkForName(string $markForName)
258
    {
259
        $this->markForName = $markForName;
260
    }
261
262
    public function getBatchOrderID(): string
263
    {
264
        return $this->batchOrderID;
265
    }
266
267
    public function setBatchOrderID(string $batchOrderID)
268
    {
269
        $this->batchOrderID = $batchOrderID;
270
    }
271
272
    public function getCreationDate(): string
273
    {
274
        return $this->creationDate;
275
    }
276
277
    public function setCreationDate(string $creationDate)
278
    {
279
        $this->creationDate = $creationDate;
280
    }
281
282
    public function getEarliestShipDate(): string
283
    {
284
        return $this->earliestShipDate;
285
    }
286
287
    public function setEarliestShipDate(string $earliestShipDate)
288
    {
289
        $this->earliestShipDate = $earliestShipDate;
290
    }
291
292
    public function getShipCancelDate(): string
293
    {
294
        return $this->shipCancelDate;
295
    }
296
297
    public function setShipCancelDate(string $shipCancelDate)
298
    {
299
        $this->shipCancelDate = $shipCancelDate;
300
    }
301
302
    public function getPickupDate(): string
303
    {
304
        return $this->pickupDate;
305
    }
306
307
    public function setPickupDate(string $pickupDate)
308
    {
309
        $this->pickupDate = $pickupDate;
310
    }
311
312
    public function getCarrier(): string
313
    {
314
        return $this->carrier;
315
    }
316
317
    public function setCarrier(string $carrier)
318
    {
319
        $this->carrier = $carrier;
320
    }
321
322
    public function getBillingCode(): string
323
    {
324
        return $this->billingCode;
325
    }
326
327
    public function setBillingCode(string $billingCode)
328
    {
329
        $this->billingCode = $billingCode;
330
    }
331
332
    public function getTotWeight(): string
333
    {
334
        return $this->totWeight;
335
    }
336
337
    public function setTotWeight(string $totWeight)
338
    {
339
        $this->totWeight = $totWeight;
340
    }
341
342
    public function getTotCuFt(): string
343
    {
344
        return $this->totCuFt;
345
    }
346
347
    public function setTotCuFt(string $totCuFt)
348
    {
349
        $this->totCuFt = $totCuFt;
350
    }
351
352
    public function getTotPackages(): string
353
    {
354
        return $this->totPackages;
355
    }
356
357
    public function setTotPackages(string $totPackages)
358
    {
359
        $this->totPackages = $totPackages;
360
    }
361
362
    public function getTotOrdQty(): string
363
    {
364
        return $this->totOrdQty;
365
    }
366
367
    public function setTotOrdQty(string $totOrdQty)
368
    {
369
        $this->totOrdQty = $totOrdQty;
370
    }
371
372
    public function getTotLines(): string
373
    {
374
        return $this->totLines;
375
    }
376
377
    public function setTotLines(string $totLines)
378
    {
379
        $this->totLines = $totLines;
380
    }
381
382
    public function getNotes(): string
383
    {
384
        return $this->notes;
385
    }
386
387
    public function setNotes(string $notes)
388
    {
389
        $this->notes = $notes;
390
    }
391
392
    public function getOverAllocated(): string
393
    {
394
        return $this->overAllocated;
395
    }
396
397
    public function setOverAllocated(string $overAllocated)
398
    {
399
        $this->overAllocated = $overAllocated;
400
    }
401
402
    public function getPickTicketPrintDate(): string
403
    {
404
        return $this->pickTicketPrintDate;
405
    }
406
407
    public function setPickTicketPrintDate(string $pickTicketPrintDate)
408
    {
409
        $this->pickTicketPrintDate = $pickTicketPrintDate;
410
    }
411
412
    public function getProcessDate(): string
413
    {
414
        return $this->processDate;
415
    }
416
417
    public function setProcessDate(string $processDate)
418
    {
419
        $this->processDate = $processDate;
420
    }
421
422
    public function getTrackingNumber(): string
423
    {
424
        return $this->trackingNumber;
425
    }
426
427
    public function setTrackingNumber(string $trackingNumber)
428
    {
429
        $this->trackingNumber = $trackingNumber;
430
    }
431
432
    public function getLoadNumber(): string
433
    {
434
        return $this->loadNumber;
435
    }
436
437
    public function setLoadNumber(string $loadNumber)
438
    {
439
        $this->loadNumber = $loadNumber;
440
    }
441
442
    public function getBillOfLading(): string
443
    {
444
        return $this->billOfLading;
445
    }
446
447
    public function setBillOfLading(string $billOfLading)
448
    {
449
        $this->billOfLading = $billOfLading;
450
    }
451
452
    public function getMasterBillOfLading(): string
453
    {
454
        return $this->masterBillOfLading;
455
    }
456
457
    public function setMasterBillOfLading(string $masterBillOfLading)
458
    {
459
        $this->masterBillOfLading = $masterBillOfLading;
460
    }
461
462
    public function getASNSentDate(): string
463
    {
464
        return $this->aSNSentDate;
465
    }
466
467
    public function setASNSentDate(string $aSNSentDate)
468
    {
469
        $this->aSNSentDate = $aSNSentDate;
470
    }
471
472
    public function getConfirmASNSentDate(): string
473
    {
474
        return $this->confirmASNSentDate;
475
    }
476
477
    public function setConfirmASNSentDate(string $confirmASNSentDate)
478
    {
479
        $this->confirmASNSentDate = $confirmASNSentDate;
480
    }
481
482
    public function getRememberRowInfo(): string
483
    {
484
        return $this->rememberRowInfo;
485
    }
486
487
    public function setRememberRowInfo(string $rememberRowInfo)
488
    {
489
        $this->rememberRowInfo = $rememberRowInfo;
490
    }
491
}
492