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\ThirdParty\Quadratus\Model\QGI; |
13
|
|
|
|
14
|
|
|
use DateTime; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Evenements. |
18
|
|
|
* |
19
|
|
|
* @author webeweb <https://github.com/webeweb/> |
20
|
|
|
* @package WBW\Library\Core\ThirdParty\Quadratus\Model\QGI |
21
|
|
|
*/ |
22
|
|
|
class Evenements { |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* Archive. |
26
|
|
|
* |
27
|
|
|
* @var bool|null |
28
|
|
|
*/ |
29
|
|
|
private $archive; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* Code client. |
33
|
|
|
* |
34
|
|
|
* @var string|null |
35
|
|
|
*/ |
36
|
|
|
private $codeClient; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* Code collab. |
40
|
|
|
* |
41
|
|
|
* @var string|null |
42
|
|
|
*/ |
43
|
|
|
private $codeCollab; |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Contenu1. |
47
|
|
|
* |
48
|
|
|
* @var string|null |
49
|
|
|
*/ |
50
|
|
|
private $contenu1; |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* Contenu2. |
54
|
|
|
* |
55
|
|
|
* @var string|null |
56
|
|
|
*/ |
57
|
|
|
private $contenu2; |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* Contenu3. |
61
|
|
|
* |
62
|
|
|
* @var string|null |
63
|
|
|
*/ |
64
|
|
|
private $contenu3; |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* Contenu4. |
68
|
|
|
* |
69
|
|
|
* @var string|null |
70
|
|
|
*/ |
71
|
|
|
private $contenu4; |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* Date evt. |
75
|
|
|
* |
76
|
|
|
* @var DateTime|null |
77
|
|
|
*/ |
78
|
|
|
private $dateEvt; |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* Emplacement fichier. |
82
|
|
|
* |
83
|
|
|
* @var string|null |
84
|
|
|
*/ |
85
|
|
|
private $emplacementFichier; |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Etat is actif. |
89
|
|
|
* |
90
|
|
|
* @var string|null |
91
|
|
|
*/ |
92
|
|
|
private $etatIsActif; |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* Fs compta. |
96
|
|
|
* |
97
|
|
|
* @var string|null |
98
|
|
|
*/ |
99
|
|
|
private $fsCompta; |
100
|
|
|
|
101
|
|
|
/** |
102
|
|
|
* Fs compta coll arch. |
103
|
|
|
* |
104
|
|
|
* @var string|null |
105
|
|
|
*/ |
106
|
|
|
private $fsComptaCollArch; |
107
|
|
|
|
108
|
|
|
/** |
109
|
|
|
* Fs compta date alerte. |
110
|
|
|
* |
111
|
|
|
* @var DateTime|null |
112
|
|
|
*/ |
113
|
|
|
private $fsComptaDateAlerte; |
114
|
|
|
|
115
|
|
|
/** |
116
|
|
|
* Fs compta date arch. |
117
|
|
|
* |
118
|
|
|
* @var DateTime|null |
119
|
|
|
*/ |
120
|
|
|
private $fsComptaDateArch; |
121
|
|
|
|
122
|
|
|
/** |
123
|
|
|
* Fs compta ya alerte. |
124
|
|
|
* |
125
|
|
|
* @var bool|null |
126
|
|
|
*/ |
127
|
|
|
private $fsComptaYaAlerte; |
128
|
|
|
|
129
|
|
|
/** |
130
|
|
|
* Fs fiscal. |
131
|
|
|
* |
132
|
|
|
* @var string|null |
133
|
|
|
*/ |
134
|
|
|
private $fsFiscal; |
135
|
|
|
|
136
|
|
|
/** |
137
|
|
|
* Fs fiscal coll arch. |
138
|
|
|
* |
139
|
|
|
* @var string|null |
140
|
|
|
*/ |
141
|
|
|
private $fsFiscalCollArch; |
142
|
|
|
|
143
|
|
|
/** |
144
|
|
|
* Fs fiscal date arch. |
145
|
|
|
* |
146
|
|
|
* @var DateTime|null |
147
|
|
|
*/ |
148
|
|
|
private $fsFiscalDateArch; |
149
|
|
|
|
150
|
|
|
/** |
151
|
|
|
* Fs juridique. |
152
|
|
|
* |
153
|
|
|
* @var string|null |
154
|
|
|
*/ |
155
|
|
|
private $fsJuridique; |
156
|
|
|
|
157
|
|
|
/** |
158
|
|
|
* Fs juridique coll arch. |
159
|
|
|
* |
160
|
|
|
* @var string|null |
161
|
|
|
*/ |
162
|
|
|
private $fsJuridiqueCollArch; |
163
|
|
|
|
164
|
|
|
/** |
165
|
|
|
* Fs juridique date arch. |
166
|
|
|
* |
167
|
|
|
* @var DateTime|null |
168
|
|
|
*/ |
169
|
|
|
private $fsJuridiqueDateArch; |
170
|
|
|
|
171
|
|
|
/** |
172
|
|
|
* Fs social. |
173
|
|
|
* |
174
|
|
|
* @var string|null |
175
|
|
|
*/ |
176
|
|
|
private $fsSocial; |
177
|
|
|
|
178
|
|
|
/** |
179
|
|
|
* Fs social coll arch. |
180
|
|
|
* |
181
|
|
|
* @var string|null |
182
|
|
|
*/ |
183
|
|
|
private $fsSocialCollArch; |
184
|
|
|
|
185
|
|
|
/** |
186
|
|
|
* Fs social date alerte. |
187
|
|
|
* |
188
|
|
|
* @var DateTime|null |
189
|
|
|
*/ |
190
|
|
|
private $fsSocialDateAlerte; |
191
|
|
|
|
192
|
|
|
/** |
193
|
|
|
* Fs social date arch. |
194
|
|
|
* |
195
|
|
|
* @var DateTime|null |
196
|
|
|
*/ |
197
|
|
|
private $fsSocialDateArch; |
198
|
|
|
|
199
|
|
|
/** |
200
|
|
|
* Fs social ya alerte. |
201
|
|
|
* |
202
|
|
|
* @var bool|null |
203
|
|
|
*/ |
204
|
|
|
private $fsSocialYaAlerte; |
205
|
|
|
|
206
|
|
|
/** |
207
|
|
|
* Fsgi. |
208
|
|
|
* |
209
|
|
|
* @var string|null |
210
|
|
|
*/ |
211
|
|
|
private $fsgi; |
212
|
|
|
|
213
|
|
|
/** |
214
|
|
|
* Fsgi coll arch. |
215
|
|
|
* |
216
|
|
|
* @var string|null |
217
|
|
|
*/ |
218
|
|
|
private $fsgiCollArch; |
219
|
|
|
|
220
|
|
|
/** |
221
|
|
|
* Fsgi date arch. |
222
|
|
|
* |
223
|
|
|
* @var DateTime|null |
224
|
|
|
*/ |
225
|
|
|
private $fsgiDateArch; |
226
|
|
|
|
227
|
|
|
/** |
228
|
|
|
* Libelle. |
229
|
|
|
* |
230
|
|
|
* @var string|null |
231
|
|
|
*/ |
232
|
|
|
private $libelle; |
233
|
|
|
|
234
|
|
|
/** |
235
|
|
|
* Numero. |
236
|
|
|
* |
237
|
|
|
* @var int|null |
238
|
|
|
*/ |
239
|
|
|
private $numero; |
240
|
|
|
|
241
|
|
|
/** |
242
|
|
|
* Qualifiant1. |
243
|
|
|
* |
244
|
|
|
* @var string|null |
245
|
|
|
*/ |
246
|
|
|
private $qualifiant1; |
247
|
|
|
|
248
|
|
|
/** |
249
|
|
|
* Qualifiant2. |
250
|
|
|
* |
251
|
|
|
* @var string|null |
252
|
|
|
*/ |
253
|
|
|
private $qualifiant2; |
254
|
|
|
|
255
|
|
|
/** |
256
|
|
|
* Qualifiant3. |
257
|
|
|
* |
258
|
|
|
* @var string|null |
259
|
|
|
*/ |
260
|
|
|
private $qualifiant3; |
261
|
|
|
|
262
|
|
|
/** |
263
|
|
|
* Racine cpt. |
264
|
|
|
* |
265
|
|
|
* @var string|null |
266
|
|
|
*/ |
267
|
|
|
private $racineCpt; |
268
|
|
|
|
269
|
|
|
/** |
270
|
|
|
* Regle. |
271
|
|
|
* |
272
|
|
|
* @var bool|null |
273
|
|
|
*/ |
274
|
|
|
private $regle; |
275
|
|
|
|
276
|
|
|
/** |
277
|
|
|
* Titre. |
278
|
|
|
* |
279
|
|
|
* @var string|null |
280
|
|
|
*/ |
281
|
|
|
private $titre; |
282
|
|
|
|
283
|
|
|
/** |
284
|
|
|
* Type evt. |
285
|
|
|
* |
286
|
|
|
* @var string|null |
287
|
|
|
*/ |
288
|
|
|
private $typeEvt; |
289
|
|
|
|
290
|
|
|
/** |
291
|
|
|
* Uniq id. |
292
|
|
|
* |
293
|
|
|
* @var string|null |
294
|
|
|
*/ |
295
|
|
|
private $uniqId; |
296
|
|
|
|
297
|
|
|
/** |
298
|
|
|
* Constructor. |
299
|
|
|
*/ |
300
|
|
|
public function __construct() { |
301
|
|
|
// NOTHING TO DO |
302
|
|
|
} |
303
|
|
|
|
304
|
|
|
/** |
305
|
|
|
* Get the archive. |
306
|
|
|
* |
307
|
|
|
* @return bool|null Returns the archive. |
308
|
|
|
*/ |
309
|
|
|
public function getArchive(): ?bool { |
310
|
|
|
return $this->archive; |
311
|
|
|
} |
312
|
|
|
|
313
|
|
|
/** |
314
|
|
|
* Get the code client. |
315
|
|
|
* |
316
|
|
|
* @return string|null Returns the code client. |
317
|
|
|
*/ |
318
|
|
|
public function getCodeClient(): ?string { |
319
|
|
|
return $this->codeClient; |
320
|
|
|
} |
321
|
|
|
|
322
|
|
|
/** |
323
|
|
|
* Get the code collab. |
324
|
|
|
* |
325
|
|
|
* @return string|null Returns the code collab. |
326
|
|
|
*/ |
327
|
|
|
public function getCodeCollab(): ?string { |
328
|
|
|
return $this->codeCollab; |
329
|
|
|
} |
330
|
|
|
|
331
|
|
|
/** |
332
|
|
|
* Get the contenu1. |
333
|
|
|
* |
334
|
|
|
* @return string|null Returns the contenu1. |
335
|
|
|
*/ |
336
|
|
|
public function getContenu1(): ?string { |
337
|
|
|
return $this->contenu1; |
338
|
|
|
} |
339
|
|
|
|
340
|
|
|
/** |
341
|
|
|
* Get the contenu2. |
342
|
|
|
* |
343
|
|
|
* @return string|null Returns the contenu2. |
344
|
|
|
*/ |
345
|
|
|
public function getContenu2(): ?string { |
346
|
|
|
return $this->contenu2; |
347
|
|
|
} |
348
|
|
|
|
349
|
|
|
/** |
350
|
|
|
* Get the contenu3. |
351
|
|
|
* |
352
|
|
|
* @return string|null Returns the contenu3. |
353
|
|
|
*/ |
354
|
|
|
public function getContenu3(): ?string { |
355
|
|
|
return $this->contenu3; |
356
|
|
|
} |
357
|
|
|
|
358
|
|
|
/** |
359
|
|
|
* Get the contenu4. |
360
|
|
|
* |
361
|
|
|
* @return string|null Returns the contenu4. |
362
|
|
|
*/ |
363
|
|
|
public function getContenu4(): ?string { |
364
|
|
|
return $this->contenu4; |
365
|
|
|
} |
366
|
|
|
|
367
|
|
|
/** |
368
|
|
|
* Get the date evt. |
369
|
|
|
* |
370
|
|
|
* @return DateTime|null Returns the date evt. |
371
|
|
|
*/ |
372
|
|
|
public function getDateEvt(): ?DateTime { |
373
|
|
|
return $this->dateEvt; |
374
|
|
|
} |
375
|
|
|
|
376
|
|
|
/** |
377
|
|
|
* Get the emplacement fichier. |
378
|
|
|
* |
379
|
|
|
* @return string|null Returns the emplacement fichier. |
380
|
|
|
*/ |
381
|
|
|
public function getEmplacementFichier(): ?string { |
382
|
|
|
return $this->emplacementFichier; |
383
|
|
|
} |
384
|
|
|
|
385
|
|
|
/** |
386
|
|
|
* Get the etat is actif. |
387
|
|
|
* |
388
|
|
|
* @return string|null Returns the etat is actif. |
389
|
|
|
*/ |
390
|
|
|
public function getEtatIsActif(): ?string { |
391
|
|
|
return $this->etatIsActif; |
392
|
|
|
} |
393
|
|
|
|
394
|
|
|
/** |
395
|
|
|
* Get the fs compta. |
396
|
|
|
* |
397
|
|
|
* @return string|null Returns the fs compta. |
398
|
|
|
*/ |
399
|
|
|
public function getFsCompta(): ?string { |
400
|
|
|
return $this->fsCompta; |
401
|
|
|
} |
402
|
|
|
|
403
|
|
|
/** |
404
|
|
|
* Get the fs compta coll arch. |
405
|
|
|
* |
406
|
|
|
* @return string|null Returns the fs compta coll arch. |
407
|
|
|
*/ |
408
|
|
|
public function getFsComptaCollArch(): ?string { |
409
|
|
|
return $this->fsComptaCollArch; |
410
|
|
|
} |
411
|
|
|
|
412
|
|
|
/** |
413
|
|
|
* Get the fs compta date alerte. |
414
|
|
|
* |
415
|
|
|
* @return DateTime|null Returns the fs compta date alerte. |
416
|
|
|
*/ |
417
|
|
|
public function getFsComptaDateAlerte(): ?DateTime { |
418
|
|
|
return $this->fsComptaDateAlerte; |
419
|
|
|
} |
420
|
|
|
|
421
|
|
|
/** |
422
|
|
|
* Get the fs compta date arch. |
423
|
|
|
* |
424
|
|
|
* @return DateTime|null Returns the fs compta date arch. |
425
|
|
|
*/ |
426
|
|
|
public function getFsComptaDateArch(): ?DateTime { |
427
|
|
|
return $this->fsComptaDateArch; |
428
|
|
|
} |
429
|
|
|
|
430
|
|
|
/** |
431
|
|
|
* Get the fs compta ya alerte. |
432
|
|
|
* |
433
|
|
|
* @return bool|null Returns the fs compta ya alerte. |
434
|
|
|
*/ |
435
|
|
|
public function getFsComptaYaAlerte(): ?bool { |
436
|
|
|
return $this->fsComptaYaAlerte; |
437
|
|
|
} |
438
|
|
|
|
439
|
|
|
/** |
440
|
|
|
* Get the fs fiscal. |
441
|
|
|
* |
442
|
|
|
* @return string|null Returns the fs fiscal. |
443
|
|
|
*/ |
444
|
|
|
public function getFsFiscal(): ?string { |
445
|
|
|
return $this->fsFiscal; |
446
|
|
|
} |
447
|
|
|
|
448
|
|
|
/** |
449
|
|
|
* Get the fs fiscal coll arch. |
450
|
|
|
* |
451
|
|
|
* @return string|null Returns the fs fiscal coll arch. |
452
|
|
|
*/ |
453
|
|
|
public function getFsFiscalCollArch(): ?string { |
454
|
|
|
return $this->fsFiscalCollArch; |
455
|
|
|
} |
456
|
|
|
|
457
|
|
|
/** |
458
|
|
|
* Get the fs fiscal date arch. |
459
|
|
|
* |
460
|
|
|
* @return DateTime|null Returns the fs fiscal date arch. |
461
|
|
|
*/ |
462
|
|
|
public function getFsFiscalDateArch(): ?DateTime { |
463
|
|
|
return $this->fsFiscalDateArch; |
464
|
|
|
} |
465
|
|
|
|
466
|
|
|
/** |
467
|
|
|
* Get the fs juridique. |
468
|
|
|
* |
469
|
|
|
* @return string|null Returns the fs juridique. |
470
|
|
|
*/ |
471
|
|
|
public function getFsJuridique(): ?string { |
472
|
|
|
return $this->fsJuridique; |
473
|
|
|
} |
474
|
|
|
|
475
|
|
|
/** |
476
|
|
|
* Get the fs juridique coll arch. |
477
|
|
|
* |
478
|
|
|
* @return string|null Returns the fs juridique coll arch. |
479
|
|
|
*/ |
480
|
|
|
public function getFsJuridiqueCollArch(): ?string { |
481
|
|
|
return $this->fsJuridiqueCollArch; |
482
|
|
|
} |
483
|
|
|
|
484
|
|
|
/** |
485
|
|
|
* Get the fs juridique date arch. |
486
|
|
|
* |
487
|
|
|
* @return DateTime|null Returns the fs juridique date arch. |
488
|
|
|
*/ |
489
|
|
|
public function getFsJuridiqueDateArch(): ?DateTime { |
490
|
|
|
return $this->fsJuridiqueDateArch; |
491
|
|
|
} |
492
|
|
|
|
493
|
|
|
/** |
494
|
|
|
* Get the fs social. |
495
|
|
|
* |
496
|
|
|
* @return string|null Returns the fs social. |
497
|
|
|
*/ |
498
|
|
|
public function getFsSocial(): ?string { |
499
|
|
|
return $this->fsSocial; |
500
|
|
|
} |
501
|
|
|
|
502
|
|
|
/** |
503
|
|
|
* Get the fs social coll arch. |
504
|
|
|
* |
505
|
|
|
* @return string|null Returns the fs social coll arch. |
506
|
|
|
*/ |
507
|
|
|
public function getFsSocialCollArch(): ?string { |
508
|
|
|
return $this->fsSocialCollArch; |
509
|
|
|
} |
510
|
|
|
|
511
|
|
|
/** |
512
|
|
|
* Get the fs social date alerte. |
513
|
|
|
* |
514
|
|
|
* @return DateTime|null Returns the fs social date alerte. |
515
|
|
|
*/ |
516
|
|
|
public function getFsSocialDateAlerte(): ?DateTime { |
517
|
|
|
return $this->fsSocialDateAlerte; |
518
|
|
|
} |
519
|
|
|
|
520
|
|
|
/** |
521
|
|
|
* Get the fs social date arch. |
522
|
|
|
* |
523
|
|
|
* @return DateTime|null Returns the fs social date arch. |
524
|
|
|
*/ |
525
|
|
|
public function getFsSocialDateArch(): ?DateTime { |
526
|
|
|
return $this->fsSocialDateArch; |
527
|
|
|
} |
528
|
|
|
|
529
|
|
|
/** |
530
|
|
|
* Get the fs social ya alerte. |
531
|
|
|
* |
532
|
|
|
* @return bool|null Returns the fs social ya alerte. |
533
|
|
|
*/ |
534
|
|
|
public function getFsSocialYaAlerte(): ?bool { |
535
|
|
|
return $this->fsSocialYaAlerte; |
536
|
|
|
} |
537
|
|
|
|
538
|
|
|
/** |
539
|
|
|
* Get the fsgi. |
540
|
|
|
* |
541
|
|
|
* @return string|null Returns the fsgi. |
542
|
|
|
*/ |
543
|
|
|
public function getFsgi(): ?string { |
544
|
|
|
return $this->fsgi; |
545
|
|
|
} |
546
|
|
|
|
547
|
|
|
/** |
548
|
|
|
* Get the fsgi coll arch. |
549
|
|
|
* |
550
|
|
|
* @return string|null Returns the fsgi coll arch. |
551
|
|
|
*/ |
552
|
|
|
public function getFsgiCollArch(): ?string { |
553
|
|
|
return $this->fsgiCollArch; |
554
|
|
|
} |
555
|
|
|
|
556
|
|
|
/** |
557
|
|
|
* Get the fsgi date arch. |
558
|
|
|
* |
559
|
|
|
* @return DateTime|null Returns the fsgi date arch. |
560
|
|
|
*/ |
561
|
|
|
public function getFsgiDateArch(): ?DateTime { |
562
|
|
|
return $this->fsgiDateArch; |
563
|
|
|
} |
564
|
|
|
|
565
|
|
|
/** |
566
|
|
|
* Get the libelle. |
567
|
|
|
* |
568
|
|
|
* @return string|null Returns the libelle. |
569
|
|
|
*/ |
570
|
|
|
public function getLibelle(): ?string { |
571
|
|
|
return $this->libelle; |
572
|
|
|
} |
573
|
|
|
|
574
|
|
|
/** |
575
|
|
|
* Get the numero. |
576
|
|
|
* |
577
|
|
|
* @return int|null Returns the numero. |
578
|
|
|
*/ |
579
|
|
|
public function getNumero(): ?int { |
580
|
|
|
return $this->numero; |
581
|
|
|
} |
582
|
|
|
|
583
|
|
|
/** |
584
|
|
|
* Get the qualifiant1. |
585
|
|
|
* |
586
|
|
|
* @return string|null Returns the qualifiant1. |
587
|
|
|
*/ |
588
|
|
|
public function getQualifiant1(): ?string { |
589
|
|
|
return $this->qualifiant1; |
590
|
|
|
} |
591
|
|
|
|
592
|
|
|
/** |
593
|
|
|
* Get the qualifiant2. |
594
|
|
|
* |
595
|
|
|
* @return string|null Returns the qualifiant2. |
596
|
|
|
*/ |
597
|
|
|
public function getQualifiant2(): ?string { |
598
|
|
|
return $this->qualifiant2; |
599
|
|
|
} |
600
|
|
|
|
601
|
|
|
/** |
602
|
|
|
* Get the qualifiant3. |
603
|
|
|
* |
604
|
|
|
* @return string|null Returns the qualifiant3. |
605
|
|
|
*/ |
606
|
|
|
public function getQualifiant3(): ?string { |
607
|
|
|
return $this->qualifiant3; |
608
|
|
|
} |
609
|
|
|
|
610
|
|
|
/** |
611
|
|
|
* Get the racine cpt. |
612
|
|
|
* |
613
|
|
|
* @return string|null Returns the racine cpt. |
614
|
|
|
*/ |
615
|
|
|
public function getRacineCpt(): ?string { |
616
|
|
|
return $this->racineCpt; |
617
|
|
|
} |
618
|
|
|
|
619
|
|
|
/** |
620
|
|
|
* Get the regle. |
621
|
|
|
* |
622
|
|
|
* @return bool|null Returns the regle. |
623
|
|
|
*/ |
624
|
|
|
public function getRegle(): ?bool { |
625
|
|
|
return $this->regle; |
626
|
|
|
} |
627
|
|
|
|
628
|
|
|
/** |
629
|
|
|
* Get the titre. |
630
|
|
|
* |
631
|
|
|
* @return string|null Returns the titre. |
632
|
|
|
*/ |
633
|
|
|
public function getTitre(): ?string { |
634
|
|
|
return $this->titre; |
635
|
|
|
} |
636
|
|
|
|
637
|
|
|
/** |
638
|
|
|
* Get the type evt. |
639
|
|
|
* |
640
|
|
|
* @return string|null Returns the type evt. |
641
|
|
|
*/ |
642
|
|
|
public function getTypeEvt(): ?string { |
643
|
|
|
return $this->typeEvt; |
644
|
|
|
} |
645
|
|
|
|
646
|
|
|
/** |
647
|
|
|
* Get the uniq id. |
648
|
|
|
* |
649
|
|
|
* @return string|null Returns the uniq id. |
650
|
|
|
*/ |
651
|
|
|
public function getUniqId(): ?string { |
652
|
|
|
return $this->uniqId; |
653
|
|
|
} |
654
|
|
|
|
655
|
|
|
/** |
656
|
|
|
* Set the archive. |
657
|
|
|
* |
658
|
|
|
* @param bool|null $archive The archive. |
659
|
|
|
* @return Evenements Returns this Evenements. |
660
|
|
|
*/ |
661
|
|
|
public function setArchive(?bool $archive): Evenements { |
662
|
|
|
$this->archive = $archive; |
663
|
|
|
return $this; |
664
|
|
|
} |
665
|
|
|
|
666
|
|
|
/** |
667
|
|
|
* Set the code client. |
668
|
|
|
* |
669
|
|
|
* @param string|null $codeClient The code client. |
670
|
|
|
* @return Evenements Returns this Evenements. |
671
|
|
|
*/ |
672
|
|
|
public function setCodeClient(?string $codeClient): Evenements { |
673
|
|
|
$this->codeClient = $codeClient; |
674
|
|
|
return $this; |
675
|
|
|
} |
676
|
|
|
|
677
|
|
|
/** |
678
|
|
|
* Set the code collab. |
679
|
|
|
* |
680
|
|
|
* @param string|null $codeCollab The code collab. |
681
|
|
|
* @return Evenements Returns this Evenements. |
682
|
|
|
*/ |
683
|
|
|
public function setCodeCollab(?string $codeCollab): Evenements { |
684
|
|
|
$this->codeCollab = $codeCollab; |
685
|
|
|
return $this; |
686
|
|
|
} |
687
|
|
|
|
688
|
|
|
/** |
689
|
|
|
* Set the contenu1. |
690
|
|
|
* |
691
|
|
|
* @param string|null $contenu1 The contenu1. |
692
|
|
|
* @return Evenements Returns this Evenements. |
693
|
|
|
*/ |
694
|
|
|
public function setContenu1(?string $contenu1): Evenements { |
695
|
|
|
$this->contenu1 = $contenu1; |
696
|
|
|
return $this; |
697
|
|
|
} |
698
|
|
|
|
699
|
|
|
/** |
700
|
|
|
* Set the contenu2. |
701
|
|
|
* |
702
|
|
|
* @param string|null $contenu2 The contenu2. |
703
|
|
|
* @return Evenements Returns this Evenements. |
704
|
|
|
*/ |
705
|
|
|
public function setContenu2(?string $contenu2): Evenements { |
706
|
|
|
$this->contenu2 = $contenu2; |
707
|
|
|
return $this; |
708
|
|
|
} |
709
|
|
|
|
710
|
|
|
/** |
711
|
|
|
* Set the contenu3. |
712
|
|
|
* |
713
|
|
|
* @param string|null $contenu3 The contenu3. |
714
|
|
|
* @return Evenements Returns this Evenements. |
715
|
|
|
*/ |
716
|
|
|
public function setContenu3(?string $contenu3): Evenements { |
717
|
|
|
$this->contenu3 = $contenu3; |
718
|
|
|
return $this; |
719
|
|
|
} |
720
|
|
|
|
721
|
|
|
/** |
722
|
|
|
* Set the contenu4. |
723
|
|
|
* |
724
|
|
|
* @param string|null $contenu4 The contenu4. |
725
|
|
|
* @return Evenements Returns this Evenements. |
726
|
|
|
*/ |
727
|
|
|
public function setContenu4(?string $contenu4): Evenements { |
728
|
|
|
$this->contenu4 = $contenu4; |
729
|
|
|
return $this; |
730
|
|
|
} |
731
|
|
|
|
732
|
|
|
/** |
733
|
|
|
* Set the date evt. |
734
|
|
|
* |
735
|
|
|
* @param DateTime|null $dateEvt The date evt. |
736
|
|
|
* @return Evenements Returns this Evenements. |
737
|
|
|
*/ |
738
|
|
|
public function setDateEvt(?DateTime $dateEvt): Evenements { |
739
|
|
|
$this->dateEvt = $dateEvt; |
740
|
|
|
return $this; |
741
|
|
|
} |
742
|
|
|
|
743
|
|
|
/** |
744
|
|
|
* Set the emplacement fichier. |
745
|
|
|
* |
746
|
|
|
* @param string|null $emplacementFichier The emplacement fichier. |
747
|
|
|
* @return Evenements Returns this Evenements. |
748
|
|
|
*/ |
749
|
|
|
public function setEmplacementFichier(?string $emplacementFichier): Evenements { |
750
|
|
|
$this->emplacementFichier = $emplacementFichier; |
751
|
|
|
return $this; |
752
|
|
|
} |
753
|
|
|
|
754
|
|
|
/** |
755
|
|
|
* Set the etat is actif. |
756
|
|
|
* |
757
|
|
|
* @param string|null $etatIsActif The etat is actif. |
758
|
|
|
* @return Evenements Returns this Evenements. |
759
|
|
|
*/ |
760
|
|
|
public function setEtatIsActif(?string $etatIsActif): Evenements { |
761
|
|
|
$this->etatIsActif = $etatIsActif; |
762
|
|
|
return $this; |
763
|
|
|
} |
764
|
|
|
|
765
|
|
|
/** |
766
|
|
|
* Set the fs compta. |
767
|
|
|
* |
768
|
|
|
* @param string|null $fsCompta The fs compta. |
769
|
|
|
* @return Evenements Returns this Evenements. |
770
|
|
|
*/ |
771
|
|
|
public function setFsCompta(?string $fsCompta): Evenements { |
772
|
|
|
$this->fsCompta = $fsCompta; |
773
|
|
|
return $this; |
774
|
|
|
} |
775
|
|
|
|
776
|
|
|
/** |
777
|
|
|
* Set the fs compta coll arch. |
778
|
|
|
* |
779
|
|
|
* @param string|null $fsComptaCollArch The fs compta coll arch. |
780
|
|
|
* @return Evenements Returns this Evenements. |
781
|
|
|
*/ |
782
|
|
|
public function setFsComptaCollArch(?string $fsComptaCollArch): Evenements { |
783
|
|
|
$this->fsComptaCollArch = $fsComptaCollArch; |
784
|
|
|
return $this; |
785
|
|
|
} |
786
|
|
|
|
787
|
|
|
/** |
788
|
|
|
* Set the fs compta date alerte. |
789
|
|
|
* |
790
|
|
|
* @param DateTime|null $fsComptaDateAlerte The fs compta date alerte. |
791
|
|
|
* @return Evenements Returns this Evenements. |
792
|
|
|
*/ |
793
|
|
|
public function setFsComptaDateAlerte(?DateTime $fsComptaDateAlerte): Evenements { |
794
|
|
|
$this->fsComptaDateAlerte = $fsComptaDateAlerte; |
795
|
|
|
return $this; |
796
|
|
|
} |
797
|
|
|
|
798
|
|
|
/** |
799
|
|
|
* Set the fs compta date arch. |
800
|
|
|
* |
801
|
|
|
* @param DateTime|null $fsComptaDateArch The fs compta date arch. |
802
|
|
|
* @return Evenements Returns this Evenements. |
803
|
|
|
*/ |
804
|
|
|
public function setFsComptaDateArch(?DateTime $fsComptaDateArch): Evenements { |
805
|
|
|
$this->fsComptaDateArch = $fsComptaDateArch; |
806
|
|
|
return $this; |
807
|
|
|
} |
808
|
|
|
|
809
|
|
|
/** |
810
|
|
|
* Set the fs compta ya alerte. |
811
|
|
|
* |
812
|
|
|
* @param bool|null $fsComptaYaAlerte The fs compta ya alerte. |
813
|
|
|
* @return Evenements Returns this Evenements. |
814
|
|
|
*/ |
815
|
|
|
public function setFsComptaYaAlerte(?bool $fsComptaYaAlerte): Evenements { |
816
|
|
|
$this->fsComptaYaAlerte = $fsComptaYaAlerte; |
817
|
|
|
return $this; |
818
|
|
|
} |
819
|
|
|
|
820
|
|
|
/** |
821
|
|
|
* Set the fs fiscal. |
822
|
|
|
* |
823
|
|
|
* @param string|null $fsFiscal The fs fiscal. |
824
|
|
|
* @return Evenements Returns this Evenements. |
825
|
|
|
*/ |
826
|
|
|
public function setFsFiscal(?string $fsFiscal): Evenements { |
827
|
|
|
$this->fsFiscal = $fsFiscal; |
828
|
|
|
return $this; |
829
|
|
|
} |
830
|
|
|
|
831
|
|
|
/** |
832
|
|
|
* Set the fs fiscal coll arch. |
833
|
|
|
* |
834
|
|
|
* @param string|null $fsFiscalCollArch The fs fiscal coll arch. |
835
|
|
|
* @return Evenements Returns this Evenements. |
836
|
|
|
*/ |
837
|
|
|
public function setFsFiscalCollArch(?string $fsFiscalCollArch): Evenements { |
838
|
|
|
$this->fsFiscalCollArch = $fsFiscalCollArch; |
839
|
|
|
return $this; |
840
|
|
|
} |
841
|
|
|
|
842
|
|
|
/** |
843
|
|
|
* Set the fs fiscal date arch. |
844
|
|
|
* |
845
|
|
|
* @param DateTime|null $fsFiscalDateArch The fs fiscal date arch. |
846
|
|
|
* @return Evenements Returns this Evenements. |
847
|
|
|
*/ |
848
|
|
|
public function setFsFiscalDateArch(?DateTime $fsFiscalDateArch): Evenements { |
849
|
|
|
$this->fsFiscalDateArch = $fsFiscalDateArch; |
850
|
|
|
return $this; |
851
|
|
|
} |
852
|
|
|
|
853
|
|
|
/** |
854
|
|
|
* Set the fs juridique. |
855
|
|
|
* |
856
|
|
|
* @param string|null $fsJuridique The fs juridique. |
857
|
|
|
* @return Evenements Returns this Evenements. |
858
|
|
|
*/ |
859
|
|
|
public function setFsJuridique(?string $fsJuridique): Evenements { |
860
|
|
|
$this->fsJuridique = $fsJuridique; |
861
|
|
|
return $this; |
862
|
|
|
} |
863
|
|
|
|
864
|
|
|
/** |
865
|
|
|
* Set the fs juridique coll arch. |
866
|
|
|
* |
867
|
|
|
* @param string|null $fsJuridiqueCollArch The fs juridique coll arch. |
868
|
|
|
* @return Evenements Returns this Evenements. |
869
|
|
|
*/ |
870
|
|
|
public function setFsJuridiqueCollArch(?string $fsJuridiqueCollArch): Evenements { |
871
|
|
|
$this->fsJuridiqueCollArch = $fsJuridiqueCollArch; |
872
|
|
|
return $this; |
873
|
|
|
} |
874
|
|
|
|
875
|
|
|
/** |
876
|
|
|
* Set the fs juridique date arch. |
877
|
|
|
* |
878
|
|
|
* @param DateTime|null $fsJuridiqueDateArch The fs juridique date arch. |
879
|
|
|
* @return Evenements Returns this Evenements. |
880
|
|
|
*/ |
881
|
|
|
public function setFsJuridiqueDateArch(?DateTime $fsJuridiqueDateArch): Evenements { |
882
|
|
|
$this->fsJuridiqueDateArch = $fsJuridiqueDateArch; |
883
|
|
|
return $this; |
884
|
|
|
} |
885
|
|
|
|
886
|
|
|
/** |
887
|
|
|
* Set the fs social. |
888
|
|
|
* |
889
|
|
|
* @param string|null $fsSocial The fs social. |
890
|
|
|
* @return Evenements Returns this Evenements. |
891
|
|
|
*/ |
892
|
|
|
public function setFsSocial(?string $fsSocial): Evenements { |
893
|
|
|
$this->fsSocial = $fsSocial; |
894
|
|
|
return $this; |
895
|
|
|
} |
896
|
|
|
|
897
|
|
|
/** |
898
|
|
|
* Set the fs social coll arch. |
899
|
|
|
* |
900
|
|
|
* @param string|null $fsSocialCollArch The fs social coll arch. |
901
|
|
|
* @return Evenements Returns this Evenements. |
902
|
|
|
*/ |
903
|
|
|
public function setFsSocialCollArch(?string $fsSocialCollArch): Evenements { |
904
|
|
|
$this->fsSocialCollArch = $fsSocialCollArch; |
905
|
|
|
return $this; |
906
|
|
|
} |
907
|
|
|
|
908
|
|
|
/** |
909
|
|
|
* Set the fs social date alerte. |
910
|
|
|
* |
911
|
|
|
* @param DateTime|null $fsSocialDateAlerte The fs social date alerte. |
912
|
|
|
* @return Evenements Returns this Evenements. |
913
|
|
|
*/ |
914
|
|
|
public function setFsSocialDateAlerte(?DateTime $fsSocialDateAlerte): Evenements { |
915
|
|
|
$this->fsSocialDateAlerte = $fsSocialDateAlerte; |
916
|
|
|
return $this; |
917
|
|
|
} |
918
|
|
|
|
919
|
|
|
/** |
920
|
|
|
* Set the fs social date arch. |
921
|
|
|
* |
922
|
|
|
* @param DateTime|null $fsSocialDateArch The fs social date arch. |
923
|
|
|
* @return Evenements Returns this Evenements. |
924
|
|
|
*/ |
925
|
|
|
public function setFsSocialDateArch(?DateTime $fsSocialDateArch): Evenements { |
926
|
|
|
$this->fsSocialDateArch = $fsSocialDateArch; |
927
|
|
|
return $this; |
928
|
|
|
} |
929
|
|
|
|
930
|
|
|
/** |
931
|
|
|
* Set the fs social ya alerte. |
932
|
|
|
* |
933
|
|
|
* @param bool|null $fsSocialYaAlerte The fs social ya alerte. |
934
|
|
|
* @return Evenements Returns this Evenements. |
935
|
|
|
*/ |
936
|
|
|
public function setFsSocialYaAlerte(?bool $fsSocialYaAlerte): Evenements { |
937
|
|
|
$this->fsSocialYaAlerte = $fsSocialYaAlerte; |
938
|
|
|
return $this; |
939
|
|
|
} |
940
|
|
|
|
941
|
|
|
/** |
942
|
|
|
* Set the fsgi. |
943
|
|
|
* |
944
|
|
|
* @param string|null $fsgi The fsgi. |
945
|
|
|
* @return Evenements Returns this Evenements. |
946
|
|
|
*/ |
947
|
|
|
public function setFsgi(?string $fsgi): Evenements { |
948
|
|
|
$this->fsgi = $fsgi; |
949
|
|
|
return $this; |
950
|
|
|
} |
951
|
|
|
|
952
|
|
|
/** |
953
|
|
|
* Set the fsgi coll arch. |
954
|
|
|
* |
955
|
|
|
* @param string|null $fsgiCollArch The fsgi coll arch. |
956
|
|
|
* @return Evenements Returns this Evenements. |
957
|
|
|
*/ |
958
|
|
|
public function setFsgiCollArch(?string $fsgiCollArch): Evenements { |
959
|
|
|
$this->fsgiCollArch = $fsgiCollArch; |
960
|
|
|
return $this; |
961
|
|
|
} |
962
|
|
|
|
963
|
|
|
/** |
964
|
|
|
* Set the fsgi date arch. |
965
|
|
|
* |
966
|
|
|
* @param DateTime|null $fsgiDateArch The fsgi date arch. |
967
|
|
|
* @return Evenements Returns this Evenements. |
968
|
|
|
*/ |
969
|
|
|
public function setFsgiDateArch(?DateTime $fsgiDateArch): Evenements { |
970
|
|
|
$this->fsgiDateArch = $fsgiDateArch; |
971
|
|
|
return $this; |
972
|
|
|
} |
973
|
|
|
|
974
|
|
|
/** |
975
|
|
|
* Set the libelle. |
976
|
|
|
* |
977
|
|
|
* @param string|null $libelle The libelle. |
978
|
|
|
* @return Evenements Returns this Evenements. |
979
|
|
|
*/ |
980
|
|
|
public function setLibelle(?string $libelle): Evenements { |
981
|
|
|
$this->libelle = $libelle; |
982
|
|
|
return $this; |
983
|
|
|
} |
984
|
|
|
|
985
|
|
|
/** |
986
|
|
|
* Set the numero. |
987
|
|
|
* |
988
|
|
|
* @param int|null $numero The numero. |
989
|
|
|
* @return Evenements Returns this Evenements. |
990
|
|
|
*/ |
991
|
|
|
public function setNumero(?int $numero): Evenements { |
992
|
|
|
$this->numero = $numero; |
993
|
|
|
return $this; |
994
|
|
|
} |
995
|
|
|
|
996
|
|
|
/** |
997
|
|
|
* Set the qualifiant1. |
998
|
|
|
* |
999
|
|
|
* @param string|null $qualifiant1 The qualifiant1. |
1000
|
|
|
* @return Evenements Returns this Evenements. |
1001
|
|
|
*/ |
1002
|
|
|
public function setQualifiant1(?string $qualifiant1): Evenements { |
1003
|
|
|
$this->qualifiant1 = $qualifiant1; |
1004
|
|
|
return $this; |
1005
|
|
|
} |
1006
|
|
|
|
1007
|
|
|
/** |
1008
|
|
|
* Set the qualifiant2. |
1009
|
|
|
* |
1010
|
|
|
* @param string|null $qualifiant2 The qualifiant2. |
1011
|
|
|
* @return Evenements Returns this Evenements. |
1012
|
|
|
*/ |
1013
|
|
|
public function setQualifiant2(?string $qualifiant2): Evenements { |
1014
|
|
|
$this->qualifiant2 = $qualifiant2; |
1015
|
|
|
return $this; |
1016
|
|
|
} |
1017
|
|
|
|
1018
|
|
|
/** |
1019
|
|
|
* Set the qualifiant3. |
1020
|
|
|
* |
1021
|
|
|
* @param string|null $qualifiant3 The qualifiant3. |
1022
|
|
|
* @return Evenements Returns this Evenements. |
1023
|
|
|
*/ |
1024
|
|
|
public function setQualifiant3(?string $qualifiant3): Evenements { |
1025
|
|
|
$this->qualifiant3 = $qualifiant3; |
1026
|
|
|
return $this; |
1027
|
|
|
} |
1028
|
|
|
|
1029
|
|
|
/** |
1030
|
|
|
* Set the racine cpt. |
1031
|
|
|
* |
1032
|
|
|
* @param string|null $racineCpt The racine cpt. |
1033
|
|
|
* @return Evenements Returns this Evenements. |
1034
|
|
|
*/ |
1035
|
|
|
public function setRacineCpt(?string $racineCpt): Evenements { |
1036
|
|
|
$this->racineCpt = $racineCpt; |
1037
|
|
|
return $this; |
1038
|
|
|
} |
1039
|
|
|
|
1040
|
|
|
/** |
1041
|
|
|
* Set the regle. |
1042
|
|
|
* |
1043
|
|
|
* @param bool|null $regle The regle. |
1044
|
|
|
* @return Evenements Returns this Evenements. |
1045
|
|
|
*/ |
1046
|
|
|
public function setRegle(?bool $regle): Evenements { |
1047
|
|
|
$this->regle = $regle; |
1048
|
|
|
return $this; |
1049
|
|
|
} |
1050
|
|
|
|
1051
|
|
|
/** |
1052
|
|
|
* Set the titre. |
1053
|
|
|
* |
1054
|
|
|
* @param string|null $titre The titre. |
1055
|
|
|
* @return Evenements Returns this Evenements. |
1056
|
|
|
*/ |
1057
|
|
|
public function setTitre(?string $titre): Evenements { |
1058
|
|
|
$this->titre = $titre; |
1059
|
|
|
return $this; |
1060
|
|
|
} |
1061
|
|
|
|
1062
|
|
|
/** |
1063
|
|
|
* Set the type evt. |
1064
|
|
|
* |
1065
|
|
|
* @param string|null $typeEvt The type evt. |
1066
|
|
|
* @return Evenements Returns this Evenements. |
1067
|
|
|
*/ |
1068
|
|
|
public function setTypeEvt(?string $typeEvt): Evenements { |
1069
|
|
|
$this->typeEvt = $typeEvt; |
1070
|
|
|
return $this; |
1071
|
|
|
} |
1072
|
|
|
|
1073
|
|
|
/** |
1074
|
|
|
* Set the uniq id. |
1075
|
|
|
* |
1076
|
|
|
* @param string|null $uniqId The uniq id. |
1077
|
|
|
* @return Evenements Returns this Evenements. |
1078
|
|
|
*/ |
1079
|
|
|
public function setUniqId(?string $uniqId): Evenements { |
1080
|
|
|
$this->uniqId = $uniqId; |
1081
|
|
|
return $this; |
1082
|
|
|
} |
1083
|
|
|
} |
1084
|
|
|
|