Completed
Push — master ( bc6f43...6ee0f9 )
by WEBEWEB
25:08
created

EmpPrev::getNoteMemo()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * This file is part of the core-library package.
5
 *
6
 * (c) 2018 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Library\Core\Quadratus\Model\Proprete;
13
14
use DateTime;
15
16
/**
17
 * Emp prev model.
18
 *
19
 * @author webeweb <https://github.com/webeweb/>
20
 * @package WBW\Library\Core\Quadratus\Model\Proprete
21
 */
22
class EmpPrev {
23
24
	/**
25
	 * Code collabo valid.
26
	 *
27
	 * @var string
28
	 */
29
	private $codeCollaboValid;
30
31
	/**
32
	 * Code collaborateur.
33
	 *
34
	 * @var string
35
	 */
36
	private $codeCollaborateur;
37
38
	/**
39
	 * Code employe.
40
	 *
41
	 * @var string
42
	 */
43
	private $codeEmploye;
44
45
	/**
46
	 * Date.
47
	 *
48
	 * @var DateTime
49
	 */
50
	private $date;
51
52
	/**
53
	 * Date abs decalee.
54
	 *
55
	 * @var DateTime
56
	 */
57
	private $dateAbsDecalee;
58
59
	/**
60
	 * Date validation synchro.
61
	 *
62
	 * @var DateTime
63
	 */
64
	private $dateValidationSynchro;
65
66
	/**
67
	 * Dim type2.
68
	 *
69
	 * @var string
70
	 */
71
	private $dimType2;
72
73
	/**
74
	 * Discr tache.
75
	 *
76
	 * @var int
77
	 */
78
	private $discrTache;
79
80
	/**
81
	 * Duree.
82
	 *
83
	 * @var DateTime
84
	 */
85
	private $duree;
86
87
	/**
88
	 * Employe remplace.
89
	 *
90
	 * @var string
91
	 */
92
	private $employeRemplace;
93
94
	/**
95
	 * Etat.
96
	 *
97
	 * @var string
98
	 */
99
	private $etat;
100
101
	/**
102
	 * H nuit type2.
103
	 *
104
	 * @var string
105
	 */
106
	private $hNuitType2;
107
108
	/**
109
	 * Heure deb.
110
	 *
111
	 * @var DateTime
112
	 */
113
	private $heureDeb;
114
115
	/**
116
	 * J f type2.
117
	 *
118
	 * @var string
119
	 */
120
	private $jFType2;
121
122
	/**
123
	 * Nb chambres.
124
	 *
125
	 * @var float
126
	 */
127
	private $nbChambres;
128
129
	/**
130
	 * Note memo.
131
	 *
132
	 * @var string
133
	 */
134
	private $noteMemo;
135
136
	/**
137
	 * Num chrono.
138
	 *
139
	 * @var int
140
	 */
141
	private $numChrono;
142
143
	/**
144
	 * Pointage.
145
	 *
146
	 * @var boolean
147
	 */
148
	private $pointage;
149
150
	/**
151
	 * Uniq i d.
152
	 *
153
	 * @var string
154
	 */
155
	private $uniqID;
156
157
	/**
158
	 * Uniq i d planning.
159
	 *
160
	 * @var string
161
	 */
162
	private $uniqIDPlanning;
163
164
	/**
165
	 * Uniq i d synchro.
166
	 *
167
	 * @var string
168
	 */
169
	private $uniqIDSynchro;
170
171
	/**
172
	 * Constructor.
173
	 */
174
	public function __construct() {
175
		// NOTHING TO DO;
176
	}
177
178
	/**
179
	 * Get the code collabo valid.
180
	 *
181
	 * @return string Returns the code collabo valid.
182
	 */
183
	public function getCodeCollaboValid() {
184
		return $this->codeCollaboValid;
185
	}
186
187
	/**
188
	 * Get the code collaborateur.
189
	 *
190
	 * @return string Returns the code collaborateur.
191
	 */
192
	public function getCodeCollaborateur() {
193
		return $this->codeCollaborateur;
194
	}
195
196
	/**
197
	 * Get the code employe.
198
	 *
199
	 * @return string Returns the code employe.
200
	 */
201
	public function getCodeEmploye() {
202
		return $this->codeEmploye;
203
	}
204
205
	/**
206
	 * Get the date.
207
	 *
208
	 * @return DateTime Returns the date.
209
	 */
210
	public function getDate() {
211
		return $this->date;
212
	}
213
214
	/**
215
	 * Get the date abs decalee.
216
	 *
217
	 * @return DateTime Returns the date abs decalee.
218
	 */
219
	public function getDateAbsDecalee() {
220
		return $this->dateAbsDecalee;
221
	}
222
223
	/**
224
	 * Get the date validation synchro.
225
	 *
226
	 * @return DateTime Returns the date validation synchro.
227
	 */
228
	public function getDateValidationSynchro() {
229
		return $this->dateValidationSynchro;
230
	}
231
232
	/**
233
	 * Get the dim type2.
234
	 *
235
	 * @return string Returns the dim type2.
236
	 */
237
	public function getDimType2() {
238
		return $this->dimType2;
239
	}
240
241
	/**
242
	 * Get the discr tache.
243
	 *
244
	 * @return int Returns the discr tache.
245
	 */
246
	public function getDiscrTache() {
247
		return $this->discrTache;
248
	}
249
250
	/**
251
	 * Get the duree.
252
	 *
253
	 * @return DateTime Returns the duree.
254
	 */
255
	public function getDuree() {
256
		return $this->duree;
257
	}
258
259
	/**
260
	 * Get the employe remplace.
261
	 *
262
	 * @return string Returns the employe remplace.
263
	 */
264
	public function getEmployeRemplace() {
265
		return $this->employeRemplace;
266
	}
267
268
	/**
269
	 * Get the etat.
270
	 *
271
	 * @return string Returns the etat.
272
	 */
273
	public function getEtat() {
274
		return $this->etat;
275
	}
276
277
	/**
278
	 * Get the h nuit type2.
279
	 *
280
	 * @return string Returns the h nuit type2.
281
	 */
282
	public function getHNuitType2() {
283
		return $this->hNuitType2;
284
	}
285
286
	/**
287
	 * Get the heure deb.
288
	 *
289
	 * @return DateTime Returns the heure deb.
290
	 */
291
	public function getHeureDeb() {
292
		return $this->heureDeb;
293
	}
294
295
	/**
296
	 * Get the j f type2.
297
	 *
298
	 * @return string Returns the j f type2.
299
	 */
300
	public function getJFType2() {
301
		return $this->jFType2;
302
	}
303
304
	/**
305
	 * Get the nb chambres.
306
	 *
307
	 * @return float Returns the nb chambres.
308
	 */
309
	public function getNbChambres() {
310
		return $this->nbChambres;
311
	}
312
313
	/**
314
	 * Get the note memo.
315
	 *
316
	 * @return string Returns the note memo.
317
	 */
318
	public function getNoteMemo() {
319
		return $this->noteMemo;
320
	}
321
322
	/**
323
	 * Get the num chrono.
324
	 *
325
	 * @return int Returns the num chrono.
326
	 */
327
	public function getNumChrono() {
328
		return $this->numChrono;
329
	}
330
331
	/**
332
	 * Get the pointage.
333
	 *
334
	 * @return boolean Returns the pointage.
335
	 */
336
	public function getPointage() {
337
		return $this->pointage;
338
	}
339
340
	/**
341
	 * Get the uniq i d.
342
	 *
343
	 * @return string Returns the uniq i d.
344
	 */
345
	public function getUniqID() {
346
		return $this->uniqID;
347
	}
348
349
	/**
350
	 * Get the uniq i d planning.
351
	 *
352
	 * @return string Returns the uniq i d planning.
353
	 */
354
	public function getUniqIDPlanning() {
355
		return $this->uniqIDPlanning;
356
	}
357
358
	/**
359
	 * Get the uniq i d synchro.
360
	 *
361
	 * @return string Returns the uniq i d synchro.
362
	 */
363
	public function getUniqIDSynchro() {
364
		return $this->uniqIDSynchro;
365
	}
366
367
	/**
368
	 * Set the code collabo valid.
369
	 *
370
	 * @param string $codeCollaboValid The code collabo valid.
371
	 * @return EmpPrev Returns this emp prev.
372
	 */
373
	public function setCodeCollaboValid($codeCollaboValid) {
374
		$this->codeCollaboValid = $codeCollaboValid;
375
		return $this;
376
	}
377
378
	/**
379
	 * Set the code collaborateur.
380
	 *
381
	 * @param string $codeCollaborateur The code collaborateur.
382
	 * @return EmpPrev Returns this emp prev.
383
	 */
384
	public function setCodeCollaborateur($codeCollaborateur) {
385
		$this->codeCollaborateur = $codeCollaborateur;
386
		return $this;
387
	}
388
389
	/**
390
	 * Set the code employe.
391
	 *
392
	 * @param string $codeEmploye The code employe.
393
	 * @return EmpPrev Returns this emp prev.
394
	 */
395
	public function setCodeEmploye($codeEmploye) {
396
		$this->codeEmploye = $codeEmploye;
397
		return $this;
398
	}
399
400
	/**
401
	 * Set the date.
402
	 *
403
	 * @param DateTime $date The date.
404
	 * @return EmpPrev Returns this emp prev.
405
	 */
406
	public function setDate(DateTime $date = null) {
407
		$this->date = $date;
408
		return $this;
409
	}
410
411
	/**
412
	 * Set the date abs decalee.
413
	 *
414
	 * @param DateTime $dateAbsDecalee The date abs decalee.
415
	 * @return EmpPrev Returns this emp prev.
416
	 */
417
	public function setDateAbsDecalee(DateTime $dateAbsDecalee = null) {
418
		$this->dateAbsDecalee = $dateAbsDecalee;
419
		return $this;
420
	}
421
422
	/**
423
	 * Set the date validation synchro.
424
	 *
425
	 * @param DateTime $dateValidationSynchro The date validation synchro.
426
	 * @return EmpPrev Returns this emp prev.
427
	 */
428
	public function setDateValidationSynchro(DateTime $dateValidationSynchro = null) {
429
		$this->dateValidationSynchro = $dateValidationSynchro;
430
		return $this;
431
	}
432
433
	/**
434
	 * Set the dim type2.
435
	 *
436
	 * @param string $dimType2 The dim type2.
437
	 * @return EmpPrev Returns this emp prev.
438
	 */
439
	public function setDimType2($dimType2) {
440
		$this->dimType2 = $dimType2;
441
		return $this;
442
	}
443
444
	/**
445
	 * Set the discr tache.
446
	 *
447
	 * @param int $discrTache The discr tache.
448
	 * @return EmpPrev Returns this emp prev.
449
	 */
450
	public function setDiscrTache($discrTache) {
451
		$this->discrTache = $discrTache;
452
		return $this;
453
	}
454
455
	/**
456
	 * Set the duree.
457
	 *
458
	 * @param DateTime $duree The duree.
459
	 * @return EmpPrev Returns this emp prev.
460
	 */
461
	public function setDuree(DateTime $duree = null) {
462
		$this->duree = $duree;
463
		return $this;
464
	}
465
466
	/**
467
	 * Set the employe remplace.
468
	 *
469
	 * @param string $employeRemplace The employe remplace.
470
	 * @return EmpPrev Returns this emp prev.
471
	 */
472
	public function setEmployeRemplace($employeRemplace) {
473
		$this->employeRemplace = $employeRemplace;
474
		return $this;
475
	}
476
477
	/**
478
	 * Set the etat.
479
	 *
480
	 * @param string $etat The etat.
481
	 * @return EmpPrev Returns this emp prev.
482
	 */
483
	public function setEtat($etat) {
484
		$this->etat = $etat;
485
		return $this;
486
	}
487
488
	/**
489
	 * Set the h nuit type2.
490
	 *
491
	 * @param string $hNuitType2 The h nuit type2.
492
	 * @return EmpPrev Returns this emp prev.
493
	 */
494
	public function setHNuitType2($hNuitType2) {
495
		$this->hNuitType2 = $hNuitType2;
496
		return $this;
497
	}
498
499
	/**
500
	 * Set the heure deb.
501
	 *
502
	 * @param DateTime $heureDeb The heure deb.
503
	 * @return EmpPrev Returns this emp prev.
504
	 */
505
	public function setHeureDeb(DateTime $heureDeb = null) {
506
		$this->heureDeb = $heureDeb;
507
		return $this;
508
	}
509
510
	/**
511
	 * Set the j f type2.
512
	 *
513
	 * @param string $jFType2 The j f type2.
514
	 * @return EmpPrev Returns this emp prev.
515
	 */
516
	public function setJFType2($jFType2) {
517
		$this->jFType2 = $jFType2;
518
		return $this;
519
	}
520
521
	/**
522
	 * Set the nb chambres.
523
	 *
524
	 * @param float $nbChambres The nb chambres.
525
	 * @return EmpPrev Returns this emp prev.
526
	 */
527
	public function setNbChambres($nbChambres) {
528
		$this->nbChambres = $nbChambres;
529
		return $this;
530
	}
531
532
	/**
533
	 * Set the note memo.
534
	 *
535
	 * @param string $noteMemo The note memo.
536
	 * @return EmpPrev Returns this emp prev.
537
	 */
538
	public function setNoteMemo($noteMemo) {
539
		$this->noteMemo = $noteMemo;
540
		return $this;
541
	}
542
543
	/**
544
	 * Set the num chrono.
545
	 *
546
	 * @param int $numChrono The num chrono.
547
	 * @return EmpPrev Returns this emp prev.
548
	 */
549
	public function setNumChrono($numChrono) {
550
		$this->numChrono = $numChrono;
551
		return $this;
552
	}
553
554
	/**
555
	 * Set the pointage.
556
	 *
557
	 * @param boolean $pointage The pointage.
558
	 * @return EmpPrev Returns this emp prev.
559
	 */
560
	public function setPointage($pointage) {
561
		$this->pointage = $pointage;
562
		return $this;
563
	}
564
565
	/**
566
	 * Set the uniq i d.
567
	 *
568
	 * @param string $uniqID The uniq i d.
569
	 * @return EmpPrev Returns this emp prev.
570
	 */
571
	public function setUniqID($uniqID) {
572
		$this->uniqID = $uniqID;
573
		return $this;
574
	}
575
576
	/**
577
	 * Set the uniq i d planning.
578
	 *
579
	 * @param string $uniqIDPlanning The uniq i d planning.
580
	 * @return EmpPrev Returns this emp prev.
581
	 */
582
	public function setUniqIDPlanning($uniqIDPlanning) {
583
		$this->uniqIDPlanning = $uniqIDPlanning;
584
		return $this;
585
	}
586
587
	/**
588
	 * Set the uniq i d synchro.
589
	 *
590
	 * @param string $uniqIDSynchro The uniq i d synchro.
591
	 * @return EmpPrev Returns this emp prev.
592
	 */
593
	public function setUniqIDSynchro($uniqIDSynchro) {
594
		$this->uniqIDSynchro = $uniqIDSynchro;
595
		return $this;
596
	}
597
598
}
599