Complex classes like Etablissements often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Etablissements, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 22 | class Etablissements { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * At taux bul1. |
||
| 26 | * |
||
| 27 | * @var float|null |
||
| 28 | */ |
||
| 29 | private $atTauxBul1; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * At taux bul2. |
||
| 33 | * |
||
| 34 | * @var float|null |
||
| 35 | */ |
||
| 36 | private $atTauxBul2; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * At taux bul3. |
||
| 40 | * |
||
| 41 | * @var float|null |
||
| 42 | */ |
||
| 43 | private $atTauxBul3; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * At taux bul4. |
||
| 47 | * |
||
| 48 | * @var float|null |
||
| 49 | */ |
||
| 50 | private $atTauxBul4; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * At taux bul5. |
||
| 54 | * |
||
| 55 | * @var float|null |
||
| 56 | */ |
||
| 57 | private $atTauxBul5; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Abattement max. |
||
| 61 | * |
||
| 62 | * @var float|null |
||
| 63 | */ |
||
| 64 | private $abattementMax; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Alleg particulier. |
||
| 68 | * |
||
| 69 | * @var string|null |
||
| 70 | */ |
||
| 71 | private $allegParticulier; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * At bureau1. |
||
| 75 | * |
||
| 76 | * @var string|null |
||
| 77 | */ |
||
| 78 | private $atBureau1; |
||
| 79 | |||
| 80 | /** |
||
| 81 | * At bureau2. |
||
| 82 | * |
||
| 83 | * @var string|null |
||
| 84 | */ |
||
| 85 | private $atBureau2; |
||
| 86 | |||
| 87 | /** |
||
| 88 | * At bureau3. |
||
| 89 | * |
||
| 90 | * @var string|null |
||
| 91 | */ |
||
| 92 | private $atBureau3; |
||
| 93 | |||
| 94 | /** |
||
| 95 | * At bureau4. |
||
| 96 | * |
||
| 97 | * @var string|null |
||
| 98 | */ |
||
| 99 | private $atBureau4; |
||
| 100 | |||
| 101 | /** |
||
| 102 | * At bureau5. |
||
| 103 | * |
||
| 104 | * @var string|null |
||
| 105 | */ |
||
| 106 | private $atBureau5; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * At etab1. |
||
| 110 | * |
||
| 111 | * @var string|null |
||
| 112 | */ |
||
| 113 | private $atEtab1; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * At etab2. |
||
| 117 | * |
||
| 118 | * @var string|null |
||
| 119 | */ |
||
| 120 | private $atEtab2; |
||
| 121 | |||
| 122 | /** |
||
| 123 | * At etab3. |
||
| 124 | * |
||
| 125 | * @var string|null |
||
| 126 | */ |
||
| 127 | private $atEtab3; |
||
| 128 | |||
| 129 | /** |
||
| 130 | * At etab4. |
||
| 131 | * |
||
| 132 | * @var string|null |
||
| 133 | */ |
||
| 134 | private $atEtab4; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * At etab5. |
||
| 138 | * |
||
| 139 | * @var string|null |
||
| 140 | */ |
||
| 141 | private $atEtab5; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * At risque1. |
||
| 145 | * |
||
| 146 | * @var string|null |
||
| 147 | */ |
||
| 148 | private $atRisque1; |
||
| 149 | |||
| 150 | /** |
||
| 151 | * At risque2. |
||
| 152 | * |
||
| 153 | * @var string|null |
||
| 154 | */ |
||
| 155 | private $atRisque2; |
||
| 156 | |||
| 157 | /** |
||
| 158 | * At risque3. |
||
| 159 | * |
||
| 160 | * @var string|null |
||
| 161 | */ |
||
| 162 | private $atRisque3; |
||
| 163 | |||
| 164 | /** |
||
| 165 | * At risque4. |
||
| 166 | * |
||
| 167 | * @var string|null |
||
| 168 | */ |
||
| 169 | private $atRisque4; |
||
| 170 | |||
| 171 | /** |
||
| 172 | * At risque5. |
||
| 173 | * |
||
| 174 | * @var string|null |
||
| 175 | */ |
||
| 176 | private $atRisque5; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * At taux1. |
||
| 180 | * |
||
| 181 | * @var float|null |
||
| 182 | */ |
||
| 183 | private $atTaux1; |
||
| 184 | |||
| 185 | /** |
||
| 186 | * At taux2. |
||
| 187 | * |
||
| 188 | * @var float|null |
||
| 189 | */ |
||
| 190 | private $atTaux2; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * At taux3. |
||
| 194 | * |
||
| 195 | * @var float|null |
||
| 196 | */ |
||
| 197 | private $atTaux3; |
||
| 198 | |||
| 199 | /** |
||
| 200 | * At taux4. |
||
| 201 | * |
||
| 202 | * @var float|null |
||
| 203 | */ |
||
| 204 | private $atTaux4; |
||
| 205 | |||
| 206 | /** |
||
| 207 | * At taux5. |
||
| 208 | * |
||
| 209 | * @var float|null |
||
| 210 | */ |
||
| 211 | private $atTaux5; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * Aubry1 modifie. |
||
| 215 | * |
||
| 216 | * @var bool|null |
||
| 217 | */ |
||
| 218 | private $aubry1Modifie; |
||
| 219 | |||
| 220 | /** |
||
| 221 | * Autre alleg. |
||
| 222 | * |
||
| 223 | * @var string|null |
||
| 224 | */ |
||
| 225 | private $autreAlleg; |
||
| 226 | |||
| 227 | /** |
||
| 228 | * Bic1. |
||
| 229 | * |
||
| 230 | * @var string|null |
||
| 231 | */ |
||
| 232 | private $bic1; |
||
| 233 | |||
| 234 | /** |
||
| 235 | * Btq. |
||
| 236 | * |
||
| 237 | * @var string|null |
||
| 238 | */ |
||
| 239 | private $btq; |
||
| 240 | |||
| 241 | /** |
||
| 242 | * Banque1. |
||
| 243 | * |
||
| 244 | * @var string|null |
||
| 245 | */ |
||
| 246 | private $banque1; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * Banque2. |
||
| 250 | * |
||
| 251 | * @var string|null |
||
| 252 | */ |
||
| 253 | private $banque2; |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Banque3. |
||
| 257 | * |
||
| 258 | * @var string|null |
||
| 259 | */ |
||
| 260 | private $banque3; |
||
| 261 | |||
| 262 | /** |
||
| 263 | * Bonus cospar. |
||
| 264 | * |
||
| 265 | * @var bool|null |
||
| 266 | */ |
||
| 267 | private $bonusCospar; |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Bureau distributeur. |
||
| 271 | * |
||
| 272 | * @var string|null |
||
| 273 | */ |
||
| 274 | private $bureauDistributeur; |
||
| 275 | |||
| 276 | /** |
||
| 277 | * C colect11. |
||
| 278 | * |
||
| 279 | * @var string|null |
||
| 280 | */ |
||
| 281 | private $cColect11; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * C colect12. |
||
| 285 | * |
||
| 286 | * @var string|null |
||
| 287 | */ |
||
| 288 | private $cColect12; |
||
| 289 | |||
| 290 | /** |
||
| 291 | * C colect21. |
||
| 292 | * |
||
| 293 | * @var string|null |
||
| 294 | */ |
||
| 295 | private $cColect21; |
||
| 296 | |||
| 297 | /** |
||
| 298 | * C colect22. |
||
| 299 | * |
||
| 300 | * @var string|null |
||
| 301 | */ |
||
| 302 | private $cColect22; |
||
| 303 | |||
| 304 | /** |
||
| 305 | * C colect31. |
||
| 306 | * |
||
| 307 | * @var string|null |
||
| 308 | */ |
||
| 309 | private $cColect31; |
||
| 310 | |||
| 311 | /** |
||
| 312 | * C colect32. |
||
| 313 | * |
||
| 314 | * @var string|null |
||
| 315 | */ |
||
| 316 | private $cColect32; |
||
| 317 | |||
| 318 | /** |
||
| 319 | * C colect41. |
||
| 320 | * |
||
| 321 | * @var string|null |
||
| 322 | */ |
||
| 323 | private $cColect41; |
||
| 324 | |||
| 325 | /** |
||
| 326 | * C colect42. |
||
| 327 | * |
||
| 328 | * @var string|null |
||
| 329 | */ |
||
| 330 | private $cColect42; |
||
| 331 | |||
| 332 | /** |
||
| 333 | * C colect51. |
||
| 334 | * |
||
| 335 | * @var string|null |
||
| 336 | */ |
||
| 337 | private $cColect51; |
||
| 338 | |||
| 339 | /** |
||
| 340 | * C colect52. |
||
| 341 | * |
||
| 342 | * @var string|null |
||
| 343 | */ |
||
| 344 | private $cColect52; |
||
| 345 | |||
| 346 | /** |
||
| 347 | * C colect61. |
||
| 348 | * |
||
| 349 | * @var string|null |
||
| 350 | */ |
||
| 351 | private $cColect61; |
||
| 352 | |||
| 353 | /** |
||
| 354 | * C colect62. |
||
| 355 | * |
||
| 356 | * @var string|null |
||
| 357 | */ |
||
| 358 | private $cColect62; |
||
| 359 | |||
| 360 | /** |
||
| 361 | * Caisse cp. |
||
| 362 | * |
||
| 363 | * @var bool|null |
||
| 364 | */ |
||
| 365 | private $caisseCp; |
||
| 366 | |||
| 367 | /** |
||
| 368 | * Centre analytique. |
||
| 369 | * |
||
| 370 | * @var string|null |
||
| 371 | */ |
||
| 372 | private $centreAnalytique; |
||
| 373 | |||
| 374 | /** |
||
| 375 | * Civilite. |
||
| 376 | * |
||
| 377 | * @var string|null |
||
| 378 | */ |
||
| 379 | private $civilite; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * Code adherent. |
||
| 383 | * |
||
| 384 | * @var string|null |
||
| 385 | */ |
||
| 386 | private $codeAdherent; |
||
| 387 | |||
| 388 | /** |
||
| 389 | * Code c colect1. |
||
| 390 | * |
||
| 391 | * @var string|null |
||
| 392 | */ |
||
| 393 | private $codeCColect1; |
||
| 394 | |||
| 395 | /** |
||
| 396 | * Code c colect2. |
||
| 397 | * |
||
| 398 | * @var string|null |
||
| 399 | */ |
||
| 400 | private $codeCColect2; |
||
| 401 | |||
| 402 | /** |
||
| 403 | * Code c colect3. |
||
| 404 | * |
||
| 405 | * @var string|null |
||
| 406 | */ |
||
| 407 | private $codeCColect3; |
||
| 408 | |||
| 409 | /** |
||
| 410 | * Code c colect4. |
||
| 411 | * |
||
| 412 | * @var string|null |
||
| 413 | */ |
||
| 414 | private $codeCColect4; |
||
| 415 | |||
| 416 | /** |
||
| 417 | * Code c colect5. |
||
| 418 | * |
||
| 419 | * @var string|null |
||
| 420 | */ |
||
| 421 | private $codeCColect5; |
||
| 422 | |||
| 423 | /** |
||
| 424 | * Code c colect6. |
||
| 425 | * |
||
| 426 | * @var string|null |
||
| 427 | */ |
||
| 428 | private $codeCColect6; |
||
| 429 | |||
| 430 | /** |
||
| 431 | * Code centre impot. |
||
| 432 | * |
||
| 433 | * @var string|null |
||
| 434 | */ |
||
| 435 | private $codeCentreImpot; |
||
| 436 | |||
| 437 | /** |
||
| 438 | * Code ducs specif. |
||
| 439 | * |
||
| 440 | * @var string|null |
||
| 441 | */ |
||
| 442 | private $codeDucsSpecif; |
||
| 443 | |||
| 444 | /** |
||
| 445 | * Code etablissement. |
||
| 446 | * |
||
| 447 | * @var int|null |
||
| 448 | */ |
||
| 449 | private $codeEtablissement; |
||
| 450 | |||
| 451 | /** |
||
| 452 | * Code insee. |
||
| 453 | * |
||
| 454 | * @var string|null |
||
| 455 | */ |
||
| 456 | private $codeInsee; |
||
| 457 | |||
| 458 | /** |
||
| 459 | * Code journal banque. |
||
| 460 | * |
||
| 461 | * @var string|null |
||
| 462 | */ |
||
| 463 | private $codeJournalBanque; |
||
| 464 | |||
| 465 | /** |
||
| 466 | * Code journal paie. |
||
| 467 | * |
||
| 468 | * @var string|null |
||
| 469 | */ |
||
| 470 | private $codeJournalPaie; |
||
| 471 | |||
| 472 | /** |
||
| 473 | * Code metier retraite. |
||
| 474 | * |
||
| 475 | * @var string|null |
||
| 476 | */ |
||
| 477 | private $codeMetierRetraite; |
||
| 478 | |||
| 479 | /** |
||
| 480 | * Code naf2008. |
||
| 481 | * |
||
| 482 | * @var string|null |
||
| 483 | */ |
||
| 484 | private $codeNaf2008; |
||
| 485 | |||
| 486 | /** |
||
| 487 | * Code naf22008. |
||
| 488 | * |
||
| 489 | * @var string|null |
||
| 490 | */ |
||
| 491 | private $codeNaf22008; |
||
| 492 | |||
| 493 | /** |
||
| 494 | * Code naf32008. |
||
| 495 | * |
||
| 496 | * @var string|null |
||
| 497 | */ |
||
| 498 | private $codeNaf32008; |
||
| 499 | |||
| 500 | /** |
||
| 501 | * Code naf. |
||
| 502 | * |
||
| 503 | * @var string|null |
||
| 504 | */ |
||
| 505 | private $codeNaf; |
||
| 506 | |||
| 507 | /** |
||
| 508 | * Code naf2. |
||
| 509 | * |
||
| 510 | * @var string|null |
||
| 511 | */ |
||
| 512 | private $codeNaf2; |
||
| 513 | |||
| 514 | /** |
||
| 515 | * Code naf3. |
||
| 516 | * |
||
| 517 | * @var string|null |
||
| 518 | */ |
||
| 519 | private $codeNaf3; |
||
| 520 | |||
| 521 | /** |
||
| 522 | * Code officiel commune. |
||
| 523 | * |
||
| 524 | * @var string|null |
||
| 525 | */ |
||
| 526 | private $codeOfficielCommune; |
||
| 527 | |||
| 528 | /** |
||
| 529 | * Code pays. |
||
| 530 | * |
||
| 531 | * @var string|null |
||
| 532 | */ |
||
| 533 | private $codePays; |
||
| 534 | |||
| 535 | /** |
||
| 536 | * Code pays residence. |
||
| 537 | * |
||
| 538 | * @var string|null |
||
| 539 | */ |
||
| 540 | private $codePaysResidence; |
||
| 541 | |||
| 542 | /** |
||
| 543 | * Code postal. |
||
| 544 | * |
||
| 545 | * @var string|null |
||
| 546 | */ |
||
| 547 | private $codePostal; |
||
| 548 | |||
| 549 | /** |
||
| 550 | * Coeff aubry2. |
||
| 551 | * |
||
| 552 | * @var float|null |
||
| 553 | */ |
||
| 554 | private $coeffAubry2; |
||
| 555 | |||
| 556 | /** |
||
| 557 | * Complement. |
||
| 558 | * |
||
| 559 | * @var string|null |
||
| 560 | */ |
||
| 561 | private $complement; |
||
| 562 | |||
| 563 | /** |
||
| 564 | * Compte acompte employe. |
||
| 565 | * |
||
| 566 | * @var bool|null |
||
| 567 | */ |
||
| 568 | private $compteAcompteEmploye; |
||
| 569 | |||
| 570 | /** |
||
| 571 | * Compte charge1. |
||
| 572 | * |
||
| 573 | * @var string|null |
||
| 574 | */ |
||
| 575 | private $compteCharge1; |
||
| 576 | |||
| 577 | /** |
||
| 578 | * Compte charge10. |
||
| 579 | * |
||
| 580 | * @var string|null |
||
| 581 | */ |
||
| 582 | private $compteCharge10; |
||
| 583 | |||
| 584 | /** |
||
| 585 | * Compte charge11. |
||
| 586 | * |
||
| 587 | * @var string|null |
||
| 588 | */ |
||
| 589 | private $compteCharge11; |
||
| 590 | |||
| 591 | /** |
||
| 592 | * Compte charge2. |
||
| 593 | * |
||
| 594 | * @var string|null |
||
| 595 | */ |
||
| 596 | private $compteCharge2; |
||
| 597 | |||
| 598 | /** |
||
| 599 | * Compte charge3. |
||
| 600 | * |
||
| 601 | * @var string|null |
||
| 602 | */ |
||
| 603 | private $compteCharge3; |
||
| 604 | |||
| 605 | /** |
||
| 606 | * Compte charge4. |
||
| 607 | * |
||
| 608 | * @var string|null |
||
| 609 | */ |
||
| 610 | private $compteCharge4; |
||
| 611 | |||
| 612 | /** |
||
| 613 | * Compte charge5. |
||
| 614 | * |
||
| 615 | * @var string|null |
||
| 616 | */ |
||
| 617 | private $compteCharge5; |
||
| 618 | |||
| 619 | /** |
||
| 620 | * Compte charge6. |
||
| 621 | * |
||
| 622 | * @var string|null |
||
| 623 | */ |
||
| 624 | private $compteCharge6; |
||
| 625 | |||
| 626 | /** |
||
| 627 | * Compte charge7. |
||
| 628 | * |
||
| 629 | * @var string|null |
||
| 630 | */ |
||
| 631 | private $compteCharge7; |
||
| 632 | |||
| 633 | /** |
||
| 634 | * Compte charge8. |
||
| 635 | * |
||
| 636 | * @var string|null |
||
| 637 | */ |
||
| 638 | private $compteCharge8; |
||
| 639 | |||
| 640 | /** |
||
| 641 | * Compte charge9. |
||
| 642 | * |
||
| 643 | * @var string|null |
||
| 644 | */ |
||
| 645 | private $compteCharge9; |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Compte charge aen. |
||
| 649 | * |
||
| 650 | * @var string|null |
||
| 651 | */ |
||
| 652 | private $compteChargeAen; |
||
| 653 | |||
| 654 | /** |
||
| 655 | * Compte charge fc. |
||
| 656 | * |
||
| 657 | * @var string|null |
||
| 658 | */ |
||
| 659 | private $compteChargeFc; |
||
| 660 | |||
| 661 | /** |
||
| 662 | * Compte charge ijss. |
||
| 663 | * |
||
| 664 | * @var string|null |
||
| 665 | */ |
||
| 666 | private $compteChargeIjss; |
||
| 667 | |||
| 668 | /** |
||
| 669 | * Compte charge indem cp. |
||
| 670 | * |
||
| 671 | * @var string|null |
||
| 672 | */ |
||
| 673 | private $compteChargeIndemCp; |
||
| 674 | |||
| 675 | /** |
||
| 676 | * Compte saisie arret. |
||
| 677 | * |
||
| 678 | * @var string|null |
||
| 679 | */ |
||
| 680 | private $compteSaisieArret; |
||
| 681 | |||
| 682 | /** |
||
| 683 | * Compte tiers1. |
||
| 684 | * |
||
| 685 | * @var string|null |
||
| 686 | */ |
||
| 687 | private $compteTiers1; |
||
| 688 | |||
| 689 | /** |
||
| 690 | * Compte tiers2. |
||
| 691 | * |
||
| 692 | * @var string|null |
||
| 693 | */ |
||
| 694 | private $compteTiers2; |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Dadsu code c colect1. |
||
| 698 | * |
||
| 699 | * @var string|null |
||
| 700 | */ |
||
| 701 | private $dadsuCodeCColect1; |
||
| 702 | |||
| 703 | /** |
||
| 704 | * Dadsu code c colect2. |
||
| 705 | * |
||
| 706 | * @var string|null |
||
| 707 | */ |
||
| 708 | private $dadsuCodeCColect2; |
||
| 709 | |||
| 710 | /** |
||
| 711 | * Dadsu code c colect3. |
||
| 712 | * |
||
| 713 | * @var string|null |
||
| 714 | */ |
||
| 715 | private $dadsuCodeCColect3; |
||
| 716 | |||
| 717 | /** |
||
| 718 | * Dadsu code c colect4. |
||
| 719 | * |
||
| 720 | * @var string|null |
||
| 721 | */ |
||
| 722 | private $dadsuCodeCColect4; |
||
| 723 | |||
| 724 | /** |
||
| 725 | * Dadsu code c colect5. |
||
| 726 | * |
||
| 727 | * @var string|null |
||
| 728 | */ |
||
| 729 | private $dadsuCodeCColect5; |
||
| 730 | |||
| 731 | /** |
||
| 732 | * Dadsu code c colect6. |
||
| 733 | * |
||
| 734 | * @var string|null |
||
| 735 | */ |
||
| 736 | private $dadsuCodeCColect6; |
||
| 737 | |||
| 738 | /** |
||
| 739 | * Date allegement. |
||
| 740 | * |
||
| 741 | * @var DateTime|null |
||
| 742 | */ |
||
| 743 | private $dateAllegement; |
||
| 744 | |||
| 745 | /** |
||
| 746 | * Date ducs. |
||
| 747 | * |
||
| 748 | * @var DateTime|null |
||
| 749 | */ |
||
| 750 | private $dateDucs; |
||
| 751 | |||
| 752 | /** |
||
| 753 | * Date fin cospar. |
||
| 754 | * |
||
| 755 | * @var DateTime|null |
||
| 756 | */ |
||
| 757 | private $dateFinCospar; |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Date fin cp. |
||
| 761 | * |
||
| 762 | * @var DateTime|null |
||
| 763 | */ |
||
| 764 | private $dateFinCp; |
||
| 765 | |||
| 766 | /** |
||
| 767 | * Date modification. |
||
| 768 | * |
||
| 769 | * @var DateTime|null |
||
| 770 | */ |
||
| 771 | private $dateModification; |
||
| 772 | |||
| 773 | /** |
||
| 774 | * Date publication. |
||
| 775 | * |
||
| 776 | * @var DateTime|null |
||
| 777 | */ |
||
| 778 | private $datePublication; |
||
| 779 | |||
| 780 | /** |
||
| 781 | * Debut envoi. |
||
| 782 | * |
||
| 783 | * @var DateTime|null |
||
| 784 | */ |
||
| 785 | private $debutEnvoi; |
||
| 786 | |||
| 787 | /** |
||
| 788 | * Detail salarie. |
||
| 789 | * |
||
| 790 | * @var bool|null |
||
| 791 | */ |
||
| 792 | private $detailSalarie; |
||
| 793 | |||
| 794 | /** |
||
| 795 | * Domaine activite. |
||
| 796 | * |
||
| 797 | * @var string|null |
||
| 798 | */ |
||
| 799 | private $domaineActivite; |
||
| 800 | |||
| 801 | /** |
||
| 802 | * Dossier comptable. |
||
| 803 | * |
||
| 804 | * @var string|null |
||
| 805 | */ |
||
| 806 | private $dossierComptable; |
||
| 807 | |||
| 808 | /** |
||
| 809 | * Edition dif. |
||
| 810 | * |
||
| 811 | * @var bool|null |
||
| 812 | */ |
||
| 813 | private $editionDif; |
||
| 814 | |||
| 815 | /** |
||
| 816 | * Edition dif bul. |
||
| 817 | * |
||
| 818 | * @var string|null |
||
| 819 | */ |
||
| 820 | private $editionDifBul; |
||
| 821 | |||
| 822 | /** |
||
| 823 | * Emetteur1. |
||
| 824 | * |
||
| 825 | * @var int|null |
||
| 826 | */ |
||
| 827 | private $emetteur1; |
||
| 828 | |||
| 829 | /** |
||
| 830 | * Emetteur2. |
||
| 831 | * |
||
| 832 | * @var int|null |
||
| 833 | */ |
||
| 834 | private $emetteur2; |
||
| 835 | |||
| 836 | /** |
||
| 837 | * Emetteur3. |
||
| 838 | * |
||
| 839 | * @var int|null |
||
| 840 | */ |
||
| 841 | private $emetteur3; |
||
| 842 | |||
| 843 | /** |
||
| 844 | * Enseigne. |
||
| 845 | * |
||
| 846 | * @var string|null |
||
| 847 | */ |
||
| 848 | private $enseigne; |
||
| 849 | |||
| 850 | /** |
||
| 851 | * Etab decl dadsu. |
||
| 852 | * |
||
| 853 | * @var bool|null |
||
| 854 | */ |
||
| 855 | private $etabDeclDadsu; |
||
| 856 | |||
| 857 | /** |
||
| 858 | * Exclure dadsu. |
||
| 859 | * |
||
| 860 | * @var bool|null |
||
| 861 | */ |
||
| 862 | private $exclureDadsu; |
||
| 863 | |||
| 864 | /** |
||
| 865 | * Exo lodeom renforcee. |
||
| 866 | * |
||
| 867 | * @var bool|null |
||
| 868 | */ |
||
| 869 | private $exoLodeomRenforcee; |
||
| 870 | |||
| 871 | /** |
||
| 872 | * Fax. |
||
| 873 | * |
||
| 874 | * @var string|null |
||
| 875 | */ |
||
| 876 | private $fax; |
||
| 877 | |||
| 878 | /** |
||
| 879 | * Fin envoi. |
||
| 880 | * |
||
| 881 | * @var DateTime|null |
||
| 882 | */ |
||
| 883 | private $finEnvoi; |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Gere fraction etab. |
||
| 887 | * |
||
| 888 | * @var bool|null |
||
| 889 | */ |
||
| 890 | private $gereFractionEtab; |
||
| 891 | |||
| 892 | /** |
||
| 893 | * Gestion contingent. |
||
| 894 | * |
||
| 895 | * @var bool|null |
||
| 896 | */ |
||
| 897 | private $gestionContingent; |
||
| 898 | |||
| 899 | /** |
||
| 900 | * Gestion ducs1. |
||
| 901 | * |
||
| 902 | * @var string|null |
||
| 903 | */ |
||
| 904 | private $gestionDucs1; |
||
| 905 | |||
| 906 | /** |
||
| 907 | * Gestion ducs2. |
||
| 908 | * |
||
| 909 | * @var string|null |
||
| 910 | */ |
||
| 911 | private $gestionDucs2; |
||
| 912 | |||
| 913 | /** |
||
| 914 | * Gestion jour ferie etab. |
||
| 915 | * |
||
| 916 | * @var bool|null |
||
| 917 | */ |
||
| 918 | private $gestionJourFerieEtab; |
||
| 919 | |||
| 920 | /** |
||
| 921 | * Gestion rtt. |
||
| 922 | * |
||
| 923 | * @var bool|null |
||
| 924 | */ |
||
| 925 | private $gestionRtt; |
||
| 926 | |||
| 927 | /** |
||
| 928 | * Gestion repos comp. |
||
| 929 | * |
||
| 930 | * @var bool|null |
||
| 931 | */ |
||
| 932 | private $gestionReposComp; |
||
| 933 | |||
| 934 | /** |
||
| 935 | * Gestion repos recup. |
||
| 936 | * |
||
| 937 | * @var bool|null |
||
| 938 | */ |
||
| 939 | private $gestionReposRecup; |
||
| 940 | |||
| 941 | /** |
||
| 942 | * Gestion repos remplace. |
||
| 943 | * |
||
| 944 | * @var bool|null |
||
| 945 | */ |
||
| 946 | private $gestionReposRemplace; |
||
| 947 | |||
| 948 | /** |
||
| 949 | * Gestion sem type. |
||
| 950 | * |
||
| 951 | * @var bool|null |
||
| 952 | */ |
||
| 953 | private $gestionSemType; |
||
| 954 | |||
| 955 | /** |
||
| 956 | * Iban1. |
||
| 957 | * |
||
| 958 | * @var string|null |
||
| 959 | */ |
||
| 960 | private $iban1; |
||
| 961 | |||
| 962 | /** |
||
| 963 | * Iban id client1. |
||
| 964 | * |
||
| 965 | * @var string|null |
||
| 966 | */ |
||
| 967 | private $ibanIdClient1; |
||
| 968 | |||
| 969 | /** |
||
| 970 | * Inscrit rep metier. |
||
| 971 | * |
||
| 972 | * @var bool|null |
||
| 973 | */ |
||
| 974 | private $inscritRepMetier; |
||
| 975 | |||
| 976 | /** |
||
| 977 | * Jour verse salaire. |
||
| 978 | * |
||
| 979 | * @var string|null |
||
| 980 | */ |
||
| 981 | private $jourVerseSalaire; |
||
| 982 | |||
| 983 | /** |
||
| 984 | * Maintien intervient cp. |
||
| 985 | * |
||
| 986 | * @var bool|null |
||
| 987 | */ |
||
| 988 | private $maintienIntervientCp; |
||
| 989 | |||
| 990 | /** |
||
| 991 | * Maintien salaire. |
||
| 992 | * |
||
| 993 | * @var bool|null |
||
| 994 | */ |
||
| 995 | private $maintienSalaire; |
||
| 996 | |||
| 997 | /** |
||
| 998 | * Maintien specifique. |
||
| 999 | * |
||
| 1000 | * @var bool|null |
||
| 1001 | */ |
||
| 1002 | private $maintienSpecifique; |
||
| 1003 | |||
| 1004 | /** |
||
| 1005 | * Masque service employe. |
||
| 1006 | * |
||
| 1007 | * @var bool|null |
||
| 1008 | */ |
||
| 1009 | private $masqueServiceEmploye; |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * Methode cp. |
||
| 1013 | * |
||
| 1014 | * @var string|null |
||
| 1015 | */ |
||
| 1016 | private $methodeCp; |
||
| 1017 | |||
| 1018 | /** |
||
| 1019 | * Mois cloture cp. |
||
| 1020 | * |
||
| 1021 | * @var string|null |
||
| 1022 | */ |
||
| 1023 | private $moisClotureCp; |
||
| 1024 | |||
| 1025 | /** |
||
| 1026 | * Mois cloture dif. |
||
| 1027 | * |
||
| 1028 | * @var string|null |
||
| 1029 | */ |
||
| 1030 | private $moisClotureDif; |
||
| 1031 | |||
| 1032 | /** |
||
| 1033 | * Mois cloture rtt. |
||
| 1034 | * |
||
| 1035 | * @var string|null |
||
| 1036 | */ |
||
| 1037 | private $moisClotureRtt; |
||
| 1038 | |||
| 1039 | /** |
||
| 1040 | * Montant1. |
||
| 1041 | * |
||
| 1042 | * @var float|null |
||
| 1043 | */ |
||
| 1044 | private $montant1; |
||
| 1045 | |||
| 1046 | /** |
||
| 1047 | * Montant2. |
||
| 1048 | * |
||
| 1049 | * @var float|null |
||
| 1050 | */ |
||
| 1051 | private $montant2; |
||
| 1052 | |||
| 1053 | /** |
||
| 1054 | * Montant3. |
||
| 1055 | * |
||
| 1056 | * @var float|null |
||
| 1057 | */ |
||
| 1058 | private $montant3; |
||
| 1059 | |||
| 1060 | /** |
||
| 1061 | * Montant4. |
||
| 1062 | * |
||
| 1063 | * @var float|null |
||
| 1064 | */ |
||
| 1065 | private $montant4; |
||
| 1066 | |||
| 1067 | /** |
||
| 1068 | * Montant5. |
||
| 1069 | * |
||
| 1070 | * @var float|null |
||
| 1071 | */ |
||
| 1072 | private $montant5; |
||
| 1073 | |||
| 1074 | /** |
||
| 1075 | * Montant allegement. |
||
| 1076 | * |
||
| 1077 | * @var float|null |
||
| 1078 | */ |
||
| 1079 | private $montantAllegement; |
||
| 1080 | |||
| 1081 | /** |
||
| 1082 | * Nature analytique. |
||
| 1083 | * |
||
| 1084 | * @var string|null |
||
| 1085 | */ |
||
| 1086 | private $natureAnalytique; |
||
| 1087 | |||
| 1088 | /** |
||
| 1089 | * Nb hdif an. |
||
| 1090 | * |
||
| 1091 | * @var float|null |
||
| 1092 | */ |
||
| 1093 | private $nbHdifAn; |
||
| 1094 | |||
| 1095 | /** |
||
| 1096 | * Nb h jour1. |
||
| 1097 | * |
||
| 1098 | * @var float|null |
||
| 1099 | */ |
||
| 1100 | private $nbHJour1; |
||
| 1101 | |||
| 1102 | /** |
||
| 1103 | * Nb h jour2. |
||
| 1104 | * |
||
| 1105 | * @var float|null |
||
| 1106 | */ |
||
| 1107 | private $nbHJour2; |
||
| 1108 | |||
| 1109 | /** |
||
| 1110 | * Nb h jour3. |
||
| 1111 | * |
||
| 1112 | * @var float|null |
||
| 1113 | */ |
||
| 1114 | private $nbHJour3; |
||
| 1115 | |||
| 1116 | /** |
||
| 1117 | * Nb h jour4. |
||
| 1118 | * |
||
| 1119 | * @var float|null |
||
| 1120 | */ |
||
| 1121 | private $nbHJour4; |
||
| 1122 | |||
| 1123 | /** |
||
| 1124 | * Nb h jour5. |
||
| 1125 | * |
||
| 1126 | * @var float|null |
||
| 1127 | */ |
||
| 1128 | private $nbHJour5; |
||
| 1129 | |||
| 1130 | /** |
||
| 1131 | * Nb h jour6. |
||
| 1132 | * |
||
| 1133 | * @var float|null |
||
| 1134 | */ |
||
| 1135 | private $nbHJour6; |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * Nb h jour7. |
||
| 1139 | * |
||
| 1140 | * @var float|null |
||
| 1141 | */ |
||
| 1142 | private $nbHJour7; |
||
| 1143 | |||
| 1144 | /** |
||
| 1145 | * Nb heure trav mois. |
||
| 1146 | * |
||
| 1147 | * @var float|null |
||
| 1148 | */ |
||
| 1149 | private $nbHeureTravMois; |
||
| 1150 | |||
| 1151 | /** |
||
| 1152 | * Nb jour base. |
||
| 1153 | * |
||
| 1154 | * @var float|null |
||
| 1155 | */ |
||
| 1156 | private $nbJourBase; |
||
| 1157 | |||
| 1158 | /** |
||
| 1159 | * Nb jour base cp. |
||
| 1160 | * |
||
| 1161 | * @var float|null |
||
| 1162 | */ |
||
| 1163 | private $nbJourBaseCp; |
||
| 1164 | |||
| 1165 | /** |
||
| 1166 | * Nb jour cp acquis. |
||
| 1167 | * |
||
| 1168 | * @var float|null |
||
| 1169 | */ |
||
| 1170 | private $nbJourCpAcquis; |
||
| 1171 | |||
| 1172 | /** |
||
| 1173 | * Nb m ajout per. |
||
| 1174 | * |
||
| 1175 | * @var string|null |
||
| 1176 | */ |
||
| 1177 | private $nbMAjoutPer; |
||
| 1178 | |||
| 1179 | /** |
||
| 1180 | * Nb mois aubry1. |
||
| 1181 | * |
||
| 1182 | * @var float|null |
||
| 1183 | */ |
||
| 1184 | private $nbMoisAubry1; |
||
| 1185 | |||
| 1186 | /** |
||
| 1187 | * Nbh jour rtt. |
||
| 1188 | * |
||
| 1189 | * @var float|null |
||
| 1190 | */ |
||
| 1191 | private $nbhJourRtt; |
||
| 1192 | |||
| 1193 | /** |
||
| 1194 | * Ne pas activer loi fillon2003. |
||
| 1195 | * |
||
| 1196 | * @var bool|null |
||
| 1197 | */ |
||
| 1198 | private $nePasActiverLoiFillon2003; |
||
| 1199 | |||
| 1200 | /** |
||
| 1201 | * Nom ville. |
||
| 1202 | * |
||
| 1203 | * @var string|null |
||
| 1204 | */ |
||
| 1205 | private $nomVille; |
||
| 1206 | |||
| 1207 | /** |
||
| 1208 | * Nom ville insee. |
||
| 1209 | * |
||
| 1210 | * @var string|null |
||
| 1211 | */ |
||
| 1212 | private $nomVilleInsee; |
||
| 1213 | |||
| 1214 | /** |
||
| 1215 | * Nom voie. |
||
| 1216 | * |
||
| 1217 | * @var string|null |
||
| 1218 | */ |
||
| 1219 | private $nomVoie; |
||
| 1220 | |||
| 1221 | /** |
||
| 1222 | * Num voie. |
||
| 1223 | * |
||
| 1224 | * @var string|null |
||
| 1225 | */ |
||
| 1226 | private $numVoie; |
||
| 1227 | |||
| 1228 | /** |
||
| 1229 | * Opca dif. |
||
| 1230 | * |
||
| 1231 | * @var string|null |
||
| 1232 | */ |
||
| 1233 | private $opcaDif; |
||
| 1234 | |||
| 1235 | /** |
||
| 1236 | * P lafond exo. |
||
| 1237 | * |
||
| 1238 | * @var float|null |
||
| 1239 | */ |
||
| 1240 | private $pLafondExo; |
||
| 1241 | |||
| 1242 | /** |
||
| 1243 | * Paie decalee. |
||
| 1244 | * |
||
| 1245 | * @var bool|null |
||
| 1246 | */ |
||
| 1247 | private $paieDecalee; |
||
| 1248 | |||
| 1249 | /** |
||
| 1250 | * Plafond1 caisse1. |
||
| 1251 | * |
||
| 1252 | * @var float|null |
||
| 1253 | */ |
||
| 1254 | private $plafond1Caisse1; |
||
| 1255 | |||
| 1256 | /** |
||
| 1257 | * Plafond1 caisse2. |
||
| 1258 | * |
||
| 1259 | * @var float|null |
||
| 1260 | */ |
||
| 1261 | private $plafond1Caisse2; |
||
| 1262 | |||
| 1263 | /** |
||
| 1264 | * Plafond1 caisse3. |
||
| 1265 | * |
||
| 1266 | * @var float|null |
||
| 1267 | */ |
||
| 1268 | private $plafond1Caisse3; |
||
| 1269 | |||
| 1270 | /** |
||
| 1271 | * Plafond2 caisse1. |
||
| 1272 | * |
||
| 1273 | * @var float|null |
||
| 1274 | */ |
||
| 1275 | private $plafond2Caisse1; |
||
| 1276 | |||
| 1277 | /** |
||
| 1278 | * Plafond2 caisse2. |
||
| 1279 | * |
||
| 1280 | * @var float|null |
||
| 1281 | */ |
||
| 1282 | private $plafond2Caisse2; |
||
| 1283 | |||
| 1284 | /** |
||
| 1285 | * Plafond2 caisse3. |
||
| 1286 | * |
||
| 1287 | * @var float|null |
||
| 1288 | */ |
||
| 1289 | private $plafond2Caisse3; |
||
| 1290 | |||
| 1291 | /** |
||
| 1292 | * Pourcent bonif. |
||
| 1293 | * |
||
| 1294 | * @var float|null |
||
| 1295 | */ |
||
| 1296 | private $pourcentBonif; |
||
| 1297 | |||
| 1298 | /** |
||
| 1299 | * Pourcent exo. |
||
| 1300 | * |
||
| 1301 | * @var float|null |
||
| 1302 | */ |
||
| 1303 | private $pourcentExo; |
||
| 1304 | |||
| 1305 | /** |
||
| 1306 | * Pourcent transport. |
||
| 1307 | * |
||
| 1308 | * @var float|null |
||
| 1309 | */ |
||
| 1310 | private $pourcentTransport; |
||
| 1311 | |||
| 1312 | /** |
||
| 1313 | * Pourcentage imp. |
||
| 1314 | * |
||
| 1315 | * @var float|null |
||
| 1316 | */ |
||
| 1317 | private $pourcentageImp; |
||
| 1318 | |||
| 1319 | /** |
||
| 1320 | * Prof spectacle. |
||
| 1321 | * |
||
| 1322 | * @var bool|null |
||
| 1323 | */ |
||
| 1324 | private $profSpectacle; |
||
| 1325 | |||
| 1326 | /** |
||
| 1327 | * Profession. |
||
| 1328 | * |
||
| 1329 | * @var string|null |
||
| 1330 | */ |
||
| 1331 | private $profession; |
||
| 1332 | |||
| 1333 | /** |
||
| 1334 | * Prud type. |
||
| 1335 | * |
||
| 1336 | * @var string|null |
||
| 1337 | */ |
||
| 1338 | private $prudType; |
||
| 1339 | |||
| 1340 | /** |
||
| 1341 | * Prud type dadsu. |
||
| 1342 | * |
||
| 1343 | * @var string|null |
||
| 1344 | */ |
||
| 1345 | private $prudTypeDadsu; |
||
| 1346 | |||
| 1347 | /** |
||
| 1348 | * Publication. |
||
| 1349 | * |
||
| 1350 | * @var bool|null |
||
| 1351 | */ |
||
| 1352 | private $publication; |
||
| 1353 | |||
| 1354 | /** |
||
| 1355 | * Qualite. |
||
| 1356 | * |
||
| 1357 | * @var string|null |
||
| 1358 | */ |
||
| 1359 | private $qualite; |
||
| 1360 | |||
| 1361 | /** |
||
| 1362 | * Rtt1. |
||
| 1363 | * |
||
| 1364 | * @var float|null |
||
| 1365 | */ |
||
| 1366 | private $rtt1; |
||
| 1367 | |||
| 1368 | /** |
||
| 1369 | * Rtt10. |
||
| 1370 | * |
||
| 1371 | * @var float|null |
||
| 1372 | */ |
||
| 1373 | private $rtt10; |
||
| 1374 | |||
| 1375 | /** |
||
| 1376 | * Rtt11. |
||
| 1377 | * |
||
| 1378 | * @var float|null |
||
| 1379 | */ |
||
| 1380 | private $rtt11; |
||
| 1381 | |||
| 1382 | /** |
||
| 1383 | * Rtt12. |
||
| 1384 | * |
||
| 1385 | * @var float|null |
||
| 1386 | */ |
||
| 1387 | private $rtt12; |
||
| 1388 | |||
| 1389 | /** |
||
| 1390 | * Rtt2. |
||
| 1391 | * |
||
| 1392 | * @var float|null |
||
| 1393 | */ |
||
| 1394 | private $rtt2; |
||
| 1395 | |||
| 1396 | /** |
||
| 1397 | * Rtt3. |
||
| 1398 | * |
||
| 1399 | * @var float|null |
||
| 1400 | */ |
||
| 1401 | private $rtt3; |
||
| 1402 | |||
| 1403 | /** |
||
| 1404 | * Rtt4. |
||
| 1405 | * |
||
| 1406 | * @var float|null |
||
| 1407 | */ |
||
| 1408 | private $rtt4; |
||
| 1409 | |||
| 1410 | /** |
||
| 1411 | * Rtt5. |
||
| 1412 | * |
||
| 1413 | * @var float|null |
||
| 1414 | */ |
||
| 1415 | private $rtt5; |
||
| 1416 | |||
| 1417 | /** |
||
| 1418 | * Rtt6. |
||
| 1419 | * |
||
| 1420 | * @var float|null |
||
| 1421 | */ |
||
| 1422 | private $rtt6; |
||
| 1423 | |||
| 1424 | /** |
||
| 1425 | * Rtt7. |
||
| 1426 | * |
||
| 1427 | * @var float|null |
||
| 1428 | */ |
||
| 1429 | private $rtt7; |
||
| 1430 | |||
| 1431 | /** |
||
| 1432 | * Rtt8. |
||
| 1433 | * |
||
| 1434 | * @var float|null |
||
| 1435 | */ |
||
| 1436 | private $rtt8; |
||
| 1437 | |||
| 1438 | /** |
||
| 1439 | * Rtt9. |
||
| 1440 | * |
||
| 1441 | * @var float|null |
||
| 1442 | */ |
||
| 1443 | private $rtt9; |
||
| 1444 | |||
| 1445 | /** |
||
| 1446 | * Raison sociale. |
||
| 1447 | * |
||
| 1448 | * @var string|null |
||
| 1449 | */ |
||
| 1450 | private $raisonSociale; |
||
| 1451 | |||
| 1452 | /** |
||
| 1453 | * Reduction fillon. |
||
| 1454 | * |
||
| 1455 | * @var bool|null |
||
| 1456 | */ |
||
| 1457 | private $reductionFillon; |
||
| 1458 | |||
| 1459 | /** |
||
| 1460 | * Responsable. |
||
| 1461 | * |
||
| 1462 | * @var string|null |
||
| 1463 | */ |
||
| 1464 | private $responsable; |
||
| 1465 | |||
| 1466 | /** |
||
| 1467 | * Rib1. |
||
| 1468 | * |
||
| 1469 | * @var string|null |
||
| 1470 | */ |
||
| 1471 | private $rib1; |
||
| 1472 | |||
| 1473 | /** |
||
| 1474 | * Rib2. |
||
| 1475 | * |
||
| 1476 | * @var string|null |
||
| 1477 | */ |
||
| 1478 | private $rib2; |
||
| 1479 | |||
| 1480 | /** |
||
| 1481 | * Rib3. |
||
| 1482 | * |
||
| 1483 | * @var string|null |
||
| 1484 | */ |
||
| 1485 | private $rib3; |
||
| 1486 | |||
| 1487 | /** |
||
| 1488 | * Siege dadsu. |
||
| 1489 | * |
||
| 1490 | * @var bool|null |
||
| 1491 | */ |
||
| 1492 | private $siegeDadsu; |
||
| 1493 | |||
| 1494 | /** |
||
| 1495 | * Siret. |
||
| 1496 | * |
||
| 1497 | * @var string|null |
||
| 1498 | */ |
||
| 1499 | private $siret; |
||
| 1500 | |||
| 1501 | /** |
||
| 1502 | * Situation geo. |
||
| 1503 | * |
||
| 1504 | * @var string|null |
||
| 1505 | */ |
||
| 1506 | private $situationGeo; |
||
| 1507 | |||
| 1508 | /** |
||
| 1509 | * Subrogation. |
||
| 1510 | * |
||
| 1511 | * @var bool|null |
||
| 1512 | */ |
||
| 1513 | private $subrogation; |
||
| 1514 | |||
| 1515 | /** |
||
| 1516 | * Suivi analytique. |
||
| 1517 | * |
||
| 1518 | * @var bool|null |
||
| 1519 | */ |
||
| 1520 | private $suiviAnalytique; |
||
| 1521 | |||
| 1522 | /** |
||
| 1523 | * Tds128. |
||
| 1524 | * |
||
| 1525 | * @var string|null |
||
| 1526 | */ |
||
| 1527 | private $tds128; |
||
| 1528 | |||
| 1529 | /** |
||
| 1530 | * Tds19. |
||
| 1531 | * |
||
| 1532 | * @var string|null |
||
| 1533 | */ |
||
| 1534 | private $tds19; |
||
| 1535 | |||
| 1536 | /** |
||
| 1537 | * Tds47. |
||
| 1538 | * |
||
| 1539 | * @var string|null |
||
| 1540 | */ |
||
| 1541 | private $tds47; |
||
| 1542 | |||
| 1543 | /** |
||
| 1544 | * Taux actionsociale. |
||
| 1545 | * |
||
| 1546 | * @var float|null |
||
| 1547 | */ |
||
| 1548 | private $tauxActionsociale; |
||
| 1549 | |||
| 1550 | /** |
||
| 1551 | * Taux construction. |
||
| 1552 | * |
||
| 1553 | * @var float|null |
||
| 1554 | */ |
||
| 1555 | private $tauxConstruction; |
||
| 1556 | |||
| 1557 | /** |
||
| 1558 | * Taux formation. |
||
| 1559 | * |
||
| 1560 | * @var float|null |
||
| 1561 | */ |
||
| 1562 | private $tauxFormation; |
||
| 1563 | |||
| 1564 | /** |
||
| 1565 | * Taux h sup1. |
||
| 1566 | * |
||
| 1567 | * @var float|null |
||
| 1568 | */ |
||
| 1569 | private $tauxHSup1; |
||
| 1570 | |||
| 1571 | /** |
||
| 1572 | * Taux h sup2. |
||
| 1573 | * |
||
| 1574 | * @var float|null |
||
| 1575 | */ |
||
| 1576 | private $tauxHSup2; |
||
| 1577 | |||
| 1578 | /** |
||
| 1579 | * Taux h sup3. |
||
| 1580 | * |
||
| 1581 | * @var float|null |
||
| 1582 | */ |
||
| 1583 | private $tauxHSup3; |
||
| 1584 | |||
| 1585 | /** |
||
| 1586 | * Taux h sup4. |
||
| 1587 | * |
||
| 1588 | * @var float|null |
||
| 1589 | */ |
||
| 1590 | private $tauxHSup4; |
||
| 1591 | |||
| 1592 | /** |
||
| 1593 | * Taux h sup5. |
||
| 1594 | * |
||
| 1595 | * @var float|null |
||
| 1596 | */ |
||
| 1597 | private $tauxHSup5; |
||
| 1598 | |||
| 1599 | /** |
||
| 1600 | * Taux ret tr2 pp. |
||
| 1601 | * |
||
| 1602 | * @var float|null |
||
| 1603 | */ |
||
| 1604 | private $tauxRetTr2Pp; |
||
| 1605 | |||
| 1606 | /** |
||
| 1607 | * Taux ret tr2 ps. |
||
| 1608 | * |
||
| 1609 | * @var float|null |
||
| 1610 | */ |
||
| 1611 | private $tauxRetTr2Ps; |
||
| 1612 | |||
| 1613 | /** |
||
| 1614 | * Taux ret tr app. |
||
| 1615 | * |
||
| 1616 | * @var float|null |
||
| 1617 | */ |
||
| 1618 | private $tauxRetTrApp; |
||
| 1619 | |||
| 1620 | /** |
||
| 1621 | * Taux ret tr aps. |
||
| 1622 | * |
||
| 1623 | * @var float|null |
||
| 1624 | */ |
||
| 1625 | private $tauxRetTrAps; |
||
| 1626 | |||
| 1627 | /** |
||
| 1628 | * Taux ret tr bpp. |
||
| 1629 | * |
||
| 1630 | * @var float|null |
||
| 1631 | */ |
||
| 1632 | private $tauxRetTrBpp; |
||
| 1633 | |||
| 1634 | /** |
||
| 1635 | * Taux ret tr bps. |
||
| 1636 | * |
||
| 1637 | * @var float|null |
||
| 1638 | */ |
||
| 1639 | private $tauxRetTrBps; |
||
| 1640 | |||
| 1641 | /** |
||
| 1642 | * Taux ret tr cpp. |
||
| 1643 | * |
||
| 1644 | * @var float|null |
||
| 1645 | */ |
||
| 1646 | private $tauxRetTrCpp; |
||
| 1647 | |||
| 1648 | /** |
||
| 1649 | * Taux ret tr cps. |
||
| 1650 | * |
||
| 1651 | * @var float|null |
||
| 1652 | */ |
||
| 1653 | private $tauxRetTrCps; |
||
| 1654 | |||
| 1655 | /** |
||
| 1656 | * Taux ret tr dpp. |
||
| 1657 | * |
||
| 1658 | * @var float|null |
||
| 1659 | */ |
||
| 1660 | private $tauxRetTrDpp; |
||
| 1661 | |||
| 1662 | /** |
||
| 1663 | * Taux ret tr dps. |
||
| 1664 | * |
||
| 1665 | * @var float|null |
||
| 1666 | */ |
||
| 1667 | private $tauxRetTrDps; |
||
| 1668 | |||
| 1669 | /** |
||
| 1670 | * Taux sup formation. |
||
| 1671 | * |
||
| 1672 | * @var float|null |
||
| 1673 | */ |
||
| 1674 | private $tauxSupFormation; |
||
| 1675 | |||
| 1676 | /** |
||
| 1677 | * Taux taxe apprenti. |
||
| 1678 | * |
||
| 1679 | * @var float|null |
||
| 1680 | */ |
||
| 1681 | private $tauxTaxeApprenti; |
||
| 1682 | |||
| 1683 | /** |
||
| 1684 | * Taux transport. |
||
| 1685 | * |
||
| 1686 | * @var float|null |
||
| 1687 | */ |
||
| 1688 | private $tauxTransport; |
||
| 1689 | |||
| 1690 | /** |
||
| 1691 | * Tel. |
||
| 1692 | * |
||
| 1693 | * @var string|null |
||
| 1694 | */ |
||
| 1695 | private $tel; |
||
| 1696 | |||
| 1697 | /** |
||
| 1698 | * Tx sal decote. |
||
| 1699 | * |
||
| 1700 | * @var float|null |
||
| 1701 | */ |
||
| 1702 | private $txSalDecote; |
||
| 1703 | |||
| 1704 | /** |
||
| 1705 | * Type base caisse1. |
||
| 1706 | * |
||
| 1707 | * @var string|null |
||
| 1708 | */ |
||
| 1709 | private $typeBaseCaisse1; |
||
| 1710 | |||
| 1711 | /** |
||
| 1712 | * Type base caisse2. |
||
| 1713 | * |
||
| 1714 | * @var string|null |
||
| 1715 | */ |
||
| 1716 | private $typeBaseCaisse2; |
||
| 1717 | |||
| 1718 | /** |
||
| 1719 | * Type base caisse3. |
||
| 1720 | * |
||
| 1721 | * @var string|null |
||
| 1722 | */ |
||
| 1723 | private $typeBaseCaisse3; |
||
| 1724 | |||
| 1725 | /** |
||
| 1726 | * Type bonif. |
||
| 1727 | * |
||
| 1728 | * @var string|null |
||
| 1729 | */ |
||
| 1730 | private $typeBonif; |
||
| 1731 | |||
| 1732 | /** |
||
| 1733 | * Type domiciliation banque1. |
||
| 1734 | * |
||
| 1735 | * @var string|null |
||
| 1736 | */ |
||
| 1737 | private $typeDomiciliationBanque1; |
||
| 1738 | |||
| 1739 | /** |
||
| 1740 | * Type domiciliation banque2. |
||
| 1741 | * |
||
| 1742 | * @var string|null |
||
| 1743 | */ |
||
| 1744 | private $typeDomiciliationBanque2; |
||
| 1745 | |||
| 1746 | /** |
||
| 1747 | * Type domiciliation banque3. |
||
| 1748 | * |
||
| 1749 | * @var string|null |
||
| 1750 | */ |
||
| 1751 | private $typeDomiciliationBanque3; |
||
| 1752 | |||
| 1753 | /** |
||
| 1754 | * Type effectif. |
||
| 1755 | * |
||
| 1756 | * @var string|null |
||
| 1757 | */ |
||
| 1758 | private $typeEffectif; |
||
| 1759 | |||
| 1760 | /** |
||
| 1761 | * Type maintien salaire. |
||
| 1762 | * |
||
| 1763 | * @var string|null |
||
| 1764 | */ |
||
| 1765 | private $typeMaintienSalaire; |
||
| 1766 | |||
| 1767 | /** |
||
| 1768 | * Type publication. |
||
| 1769 | * |
||
| 1770 | * @var string|null |
||
| 1771 | */ |
||
| 1772 | private $typePublication; |
||
| 1773 | |||
| 1774 | /** |
||
| 1775 | * Type smic. |
||
| 1776 | * |
||
| 1777 | * @var string|null |
||
| 1778 | */ |
||
| 1779 | private $typeSmic; |
||
| 1780 | |||
| 1781 | /** |
||
| 1782 | * Type saisie ab cp. |
||
| 1783 | * |
||
| 1784 | * @var string|null |
||
| 1785 | */ |
||
| 1786 | private $typeSaisieAbCp; |
||
| 1787 | |||
| 1788 | /** |
||
| 1789 | * Urssaf alsace. |
||
| 1790 | * |
||
| 1791 | * @var bool|null |
||
| 1792 | */ |
||
| 1793 | private $urssafAlsace; |
||
| 1794 | |||
| 1795 | /** |
||
| 1796 | * Zone specif. |
||
| 1797 | * |
||
| 1798 | * @var string|null |
||
| 1799 | */ |
||
| 1800 | private $zoneSpecif; |
||
| 1801 | |||
| 1802 | |||
| 1803 | /** |
||
| 1804 | * Constructor. |
||
| 1805 | */ |
||
| 1806 | public function __construct() { |
||
| 1809 | |||
| 1810 | /** |
||
| 1811 | * Get the at taux bul1. |
||
| 1812 | * |
||
| 1813 | * @return float|null Returns the at taux bul1. |
||
| 1814 | */ |
||
| 1815 | public function getAtTauxBul1(): ?float{ |
||
| 1818 | |||
| 1819 | /** |
||
| 1820 | * Get the at taux bul2. |
||
| 1821 | * |
||
| 1822 | * @return float|null Returns the at taux bul2. |
||
| 1823 | */ |
||
| 1824 | public function getAtTauxBul2(): ?float{ |
||
| 1827 | |||
| 1828 | /** |
||
| 1829 | * Get the at taux bul3. |
||
| 1830 | * |
||
| 1831 | * @return float|null Returns the at taux bul3. |
||
| 1832 | */ |
||
| 1833 | public function getAtTauxBul3(): ?float{ |
||
| 1836 | |||
| 1837 | /** |
||
| 1838 | * Get the at taux bul4. |
||
| 1839 | * |
||
| 1840 | * @return float|null Returns the at taux bul4. |
||
| 1841 | */ |
||
| 1842 | public function getAtTauxBul4(): ?float{ |
||
| 1845 | |||
| 1846 | /** |
||
| 1847 | * Get the at taux bul5. |
||
| 1848 | * |
||
| 1849 | * @return float|null Returns the at taux bul5. |
||
| 1850 | */ |
||
| 1851 | public function getAtTauxBul5(): ?float{ |
||
| 1854 | |||
| 1855 | /** |
||
| 1856 | * Get the abattement max. |
||
| 1857 | * |
||
| 1858 | * @return float|null Returns the abattement max. |
||
| 1859 | */ |
||
| 1860 | public function getAbattementMax(): ?float{ |
||
| 1863 | |||
| 1864 | /** |
||
| 1865 | * Get the alleg particulier. |
||
| 1866 | * |
||
| 1867 | * @return string|null Returns the alleg particulier. |
||
| 1868 | */ |
||
| 1869 | public function getAllegParticulier(): ?string{ |
||
| 1872 | |||
| 1873 | /** |
||
| 1874 | * Get the at bureau1. |
||
| 1875 | * |
||
| 1876 | * @return string|null Returns the at bureau1. |
||
| 1877 | */ |
||
| 1878 | public function getAtBureau1(): ?string{ |
||
| 1881 | |||
| 1882 | /** |
||
| 1883 | * Get the at bureau2. |
||
| 1884 | * |
||
| 1885 | * @return string|null Returns the at bureau2. |
||
| 1886 | */ |
||
| 1887 | public function getAtBureau2(): ?string{ |
||
| 1890 | |||
| 1891 | /** |
||
| 1892 | * Get the at bureau3. |
||
| 1893 | * |
||
| 1894 | * @return string|null Returns the at bureau3. |
||
| 1895 | */ |
||
| 1896 | public function getAtBureau3(): ?string{ |
||
| 1899 | |||
| 1900 | /** |
||
| 1901 | * Get the at bureau4. |
||
| 1902 | * |
||
| 1903 | * @return string|null Returns the at bureau4. |
||
| 1904 | */ |
||
| 1905 | public function getAtBureau4(): ?string{ |
||
| 1908 | |||
| 1909 | /** |
||
| 1910 | * Get the at bureau5. |
||
| 1911 | * |
||
| 1912 | * @return string|null Returns the at bureau5. |
||
| 1913 | */ |
||
| 1914 | public function getAtBureau5(): ?string{ |
||
| 1917 | |||
| 1918 | /** |
||
| 1919 | * Get the at etab1. |
||
| 1920 | * |
||
| 1921 | * @return string|null Returns the at etab1. |
||
| 1922 | */ |
||
| 1923 | public function getAtEtab1(): ?string{ |
||
| 1926 | |||
| 1927 | /** |
||
| 1928 | * Get the at etab2. |
||
| 1929 | * |
||
| 1930 | * @return string|null Returns the at etab2. |
||
| 1931 | */ |
||
| 1932 | public function getAtEtab2(): ?string{ |
||
| 1935 | |||
| 1936 | /** |
||
| 1937 | * Get the at etab3. |
||
| 1938 | * |
||
| 1939 | * @return string|null Returns the at etab3. |
||
| 1940 | */ |
||
| 1941 | public function getAtEtab3(): ?string{ |
||
| 1944 | |||
| 1945 | /** |
||
| 1946 | * Get the at etab4. |
||
| 1947 | * |
||
| 1948 | * @return string|null Returns the at etab4. |
||
| 1949 | */ |
||
| 1950 | public function getAtEtab4(): ?string{ |
||
| 1953 | |||
| 1954 | /** |
||
| 1955 | * Get the at etab5. |
||
| 1956 | * |
||
| 1957 | * @return string|null Returns the at etab5. |
||
| 1958 | */ |
||
| 1959 | public function getAtEtab5(): ?string{ |
||
| 1962 | |||
| 1963 | /** |
||
| 1964 | * Get the at risque1. |
||
| 1965 | * |
||
| 1966 | * @return string|null Returns the at risque1. |
||
| 1967 | */ |
||
| 1968 | public function getAtRisque1(): ?string{ |
||
| 1971 | |||
| 1972 | /** |
||
| 1973 | * Get the at risque2. |
||
| 1974 | * |
||
| 1975 | * @return string|null Returns the at risque2. |
||
| 1976 | */ |
||
| 1977 | public function getAtRisque2(): ?string{ |
||
| 1980 | |||
| 1981 | /** |
||
| 1982 | * Get the at risque3. |
||
| 1983 | * |
||
| 1984 | * @return string|null Returns the at risque3. |
||
| 1985 | */ |
||
| 1986 | public function getAtRisque3(): ?string{ |
||
| 1989 | |||
| 1990 | /** |
||
| 1991 | * Get the at risque4. |
||
| 1992 | * |
||
| 1993 | * @return string|null Returns the at risque4. |
||
| 1994 | */ |
||
| 1995 | public function getAtRisque4(): ?string{ |
||
| 1998 | |||
| 1999 | /** |
||
| 2000 | * Get the at risque5. |
||
| 2001 | * |
||
| 2002 | * @return string|null Returns the at risque5. |
||
| 2003 | */ |
||
| 2004 | public function getAtRisque5(): ?string{ |
||
| 2007 | |||
| 2008 | /** |
||
| 2009 | * Get the at taux1. |
||
| 2010 | * |
||
| 2011 | * @return float|null Returns the at taux1. |
||
| 2012 | */ |
||
| 2013 | public function getAtTaux1(): ?float{ |
||
| 2016 | |||
| 2017 | /** |
||
| 2018 | * Get the at taux2. |
||
| 2019 | * |
||
| 2020 | * @return float|null Returns the at taux2. |
||
| 2021 | */ |
||
| 2022 | public function getAtTaux2(): ?float{ |
||
| 2025 | |||
| 2026 | /** |
||
| 2027 | * Get the at taux3. |
||
| 2028 | * |
||
| 2029 | * @return float|null Returns the at taux3. |
||
| 2030 | */ |
||
| 2031 | public function getAtTaux3(): ?float{ |
||
| 2034 | |||
| 2035 | /** |
||
| 2036 | * Get the at taux4. |
||
| 2037 | * |
||
| 2038 | * @return float|null Returns the at taux4. |
||
| 2039 | */ |
||
| 2040 | public function getAtTaux4(): ?float{ |
||
| 2043 | |||
| 2044 | /** |
||
| 2045 | * Get the at taux5. |
||
| 2046 | * |
||
| 2047 | * @return float|null Returns the at taux5. |
||
| 2048 | */ |
||
| 2049 | public function getAtTaux5(): ?float{ |
||
| 2052 | |||
| 2053 | /** |
||
| 2054 | * Get the aubry1 modifie. |
||
| 2055 | * |
||
| 2056 | * @return bool|null Returns the aubry1 modifie. |
||
| 2057 | */ |
||
| 2058 | public function getAubry1Modifie(): ?bool{ |
||
| 2061 | |||
| 2062 | /** |
||
| 2063 | * Get the autre alleg. |
||
| 2064 | * |
||
| 2065 | * @return string|null Returns the autre alleg. |
||
| 2066 | */ |
||
| 2067 | public function getAutreAlleg(): ?string{ |
||
| 2070 | |||
| 2071 | /** |
||
| 2072 | * Get the bic1. |
||
| 2073 | * |
||
| 2074 | * @return string|null Returns the bic1. |
||
| 2075 | */ |
||
| 2076 | public function getBic1(): ?string{ |
||
| 2079 | |||
| 2080 | /** |
||
| 2081 | * Get the btq. |
||
| 2082 | * |
||
| 2083 | * @return string|null Returns the btq. |
||
| 2084 | */ |
||
| 2085 | public function getBtq(): ?string{ |
||
| 2088 | |||
| 2089 | /** |
||
| 2090 | * Get the banque1. |
||
| 2091 | * |
||
| 2092 | * @return string|null Returns the banque1. |
||
| 2093 | */ |
||
| 2094 | public function getBanque1(): ?string{ |
||
| 2097 | |||
| 2098 | /** |
||
| 2099 | * Get the banque2. |
||
| 2100 | * |
||
| 2101 | * @return string|null Returns the banque2. |
||
| 2102 | */ |
||
| 2103 | public function getBanque2(): ?string{ |
||
| 2106 | |||
| 2107 | /** |
||
| 2108 | * Get the banque3. |
||
| 2109 | * |
||
| 2110 | * @return string|null Returns the banque3. |
||
| 2111 | */ |
||
| 2112 | public function getBanque3(): ?string{ |
||
| 2115 | |||
| 2116 | /** |
||
| 2117 | * Get the bonus cospar. |
||
| 2118 | * |
||
| 2119 | * @return bool|null Returns the bonus cospar. |
||
| 2120 | */ |
||
| 2121 | public function getBonusCospar(): ?bool{ |
||
| 2124 | |||
| 2125 | /** |
||
| 2126 | * Get the bureau distributeur. |
||
| 2127 | * |
||
| 2128 | * @return string|null Returns the bureau distributeur. |
||
| 2129 | */ |
||
| 2130 | public function getBureauDistributeur(): ?string{ |
||
| 2133 | |||
| 2134 | /** |
||
| 2135 | * Get the c colect11. |
||
| 2136 | * |
||
| 2137 | * @return string|null Returns the c colect11. |
||
| 2138 | */ |
||
| 2139 | public function getCColect11(): ?string{ |
||
| 2142 | |||
| 2143 | /** |
||
| 2144 | * Get the c colect12. |
||
| 2145 | * |
||
| 2146 | * @return string|null Returns the c colect12. |
||
| 2147 | */ |
||
| 2148 | public function getCColect12(): ?string{ |
||
| 2151 | |||
| 2152 | /** |
||
| 2153 | * Get the c colect21. |
||
| 2154 | * |
||
| 2155 | * @return string|null Returns the c colect21. |
||
| 2156 | */ |
||
| 2157 | public function getCColect21(): ?string{ |
||
| 2160 | |||
| 2161 | /** |
||
| 2162 | * Get the c colect22. |
||
| 2163 | * |
||
| 2164 | * @return string|null Returns the c colect22. |
||
| 2165 | */ |
||
| 2166 | public function getCColect22(): ?string{ |
||
| 2169 | |||
| 2170 | /** |
||
| 2171 | * Get the c colect31. |
||
| 2172 | * |
||
| 2173 | * @return string|null Returns the c colect31. |
||
| 2174 | */ |
||
| 2175 | public function getCColect31(): ?string{ |
||
| 2178 | |||
| 2179 | /** |
||
| 2180 | * Get the c colect32. |
||
| 2181 | * |
||
| 2182 | * @return string|null Returns the c colect32. |
||
| 2183 | */ |
||
| 2184 | public function getCColect32(): ?string{ |
||
| 2187 | |||
| 2188 | /** |
||
| 2189 | * Get the c colect41. |
||
| 2190 | * |
||
| 2191 | * @return string|null Returns the c colect41. |
||
| 2192 | */ |
||
| 2193 | public function getCColect41(): ?string{ |
||
| 2196 | |||
| 2197 | /** |
||
| 2198 | * Get the c colect42. |
||
| 2199 | * |
||
| 2200 | * @return string|null Returns the c colect42. |
||
| 2201 | */ |
||
| 2202 | public function getCColect42(): ?string{ |
||
| 2205 | |||
| 2206 | /** |
||
| 2207 | * Get the c colect51. |
||
| 2208 | * |
||
| 2209 | * @return string|null Returns the c colect51. |
||
| 2210 | */ |
||
| 2211 | public function getCColect51(): ?string{ |
||
| 2214 | |||
| 2215 | /** |
||
| 2216 | * Get the c colect52. |
||
| 2217 | * |
||
| 2218 | * @return string|null Returns the c colect52. |
||
| 2219 | */ |
||
| 2220 | public function getCColect52(): ?string{ |
||
| 2223 | |||
| 2224 | /** |
||
| 2225 | * Get the c colect61. |
||
| 2226 | * |
||
| 2227 | * @return string|null Returns the c colect61. |
||
| 2228 | */ |
||
| 2229 | public function getCColect61(): ?string{ |
||
| 2232 | |||
| 2233 | /** |
||
| 2234 | * Get the c colect62. |
||
| 2235 | * |
||
| 2236 | * @return string|null Returns the c colect62. |
||
| 2237 | */ |
||
| 2238 | public function getCColect62(): ?string{ |
||
| 2241 | |||
| 2242 | /** |
||
| 2243 | * Get the caisse cp. |
||
| 2244 | * |
||
| 2245 | * @return bool|null Returns the caisse cp. |
||
| 2246 | */ |
||
| 2247 | public function getCaisseCp(): ?bool{ |
||
| 2250 | |||
| 2251 | /** |
||
| 2252 | * Get the centre analytique. |
||
| 2253 | * |
||
| 2254 | * @return string|null Returns the centre analytique. |
||
| 2255 | */ |
||
| 2256 | public function getCentreAnalytique(): ?string{ |
||
| 2259 | |||
| 2260 | /** |
||
| 2261 | * Get the civilite. |
||
| 2262 | * |
||
| 2263 | * @return string|null Returns the civilite. |
||
| 2264 | */ |
||
| 2265 | public function getCivilite(): ?string{ |
||
| 2268 | |||
| 2269 | /** |
||
| 2270 | * Get the code adherent. |
||
| 2271 | * |
||
| 2272 | * @return string|null Returns the code adherent. |
||
| 2273 | */ |
||
| 2274 | public function getCodeAdherent(): ?string{ |
||
| 2277 | |||
| 2278 | /** |
||
| 2279 | * Get the code c colect1. |
||
| 2280 | * |
||
| 2281 | * @return string|null Returns the code c colect1. |
||
| 2282 | */ |
||
| 2283 | public function getCodeCColect1(): ?string{ |
||
| 2286 | |||
| 2287 | /** |
||
| 2288 | * Get the code c colect2. |
||
| 2289 | * |
||
| 2290 | * @return string|null Returns the code c colect2. |
||
| 2291 | */ |
||
| 2292 | public function getCodeCColect2(): ?string{ |
||
| 2295 | |||
| 2296 | /** |
||
| 2297 | * Get the code c colect3. |
||
| 2298 | * |
||
| 2299 | * @return string|null Returns the code c colect3. |
||
| 2300 | */ |
||
| 2301 | public function getCodeCColect3(): ?string{ |
||
| 2304 | |||
| 2305 | /** |
||
| 2306 | * Get the code c colect4. |
||
| 2307 | * |
||
| 2308 | * @return string|null Returns the code c colect4. |
||
| 2309 | */ |
||
| 2310 | public function getCodeCColect4(): ?string{ |
||
| 2313 | |||
| 2314 | /** |
||
| 2315 | * Get the code c colect5. |
||
| 2316 | * |
||
| 2317 | * @return string|null Returns the code c colect5. |
||
| 2318 | */ |
||
| 2319 | public function getCodeCColect5(): ?string{ |
||
| 2322 | |||
| 2323 | /** |
||
| 2324 | * Get the code c colect6. |
||
| 2325 | * |
||
| 2326 | * @return string|null Returns the code c colect6. |
||
| 2327 | */ |
||
| 2328 | public function getCodeCColect6(): ?string{ |
||
| 2331 | |||
| 2332 | /** |
||
| 2333 | * Get the code centre impot. |
||
| 2334 | * |
||
| 2335 | * @return string|null Returns the code centre impot. |
||
| 2336 | */ |
||
| 2337 | public function getCodeCentreImpot(): ?string{ |
||
| 2340 | |||
| 2341 | /** |
||
| 2342 | * Get the code ducs specif. |
||
| 2343 | * |
||
| 2344 | * @return string|null Returns the code ducs specif. |
||
| 2345 | */ |
||
| 2346 | public function getCodeDucsSpecif(): ?string{ |
||
| 2349 | |||
| 2350 | /** |
||
| 2351 | * Get the code etablissement. |
||
| 2352 | * |
||
| 2353 | * @return int|null Returns the code etablissement. |
||
| 2354 | */ |
||
| 2355 | public function getCodeEtablissement(): ?int{ |
||
| 2358 | |||
| 2359 | /** |
||
| 2360 | * Get the code insee. |
||
| 2361 | * |
||
| 2362 | * @return string|null Returns the code insee. |
||
| 2363 | */ |
||
| 2364 | public function getCodeInsee(): ?string{ |
||
| 2367 | |||
| 2368 | /** |
||
| 2369 | * Get the code journal banque. |
||
| 2370 | * |
||
| 2371 | * @return string|null Returns the code journal banque. |
||
| 2372 | */ |
||
| 2373 | public function getCodeJournalBanque(): ?string{ |
||
| 2376 | |||
| 2377 | /** |
||
| 2378 | * Get the code journal paie. |
||
| 2379 | * |
||
| 2380 | * @return string|null Returns the code journal paie. |
||
| 2381 | */ |
||
| 2382 | public function getCodeJournalPaie(): ?string{ |
||
| 2385 | |||
| 2386 | /** |
||
| 2387 | * Get the code metier retraite. |
||
| 2388 | * |
||
| 2389 | * @return string|null Returns the code metier retraite. |
||
| 2390 | */ |
||
| 2391 | public function getCodeMetierRetraite(): ?string{ |
||
| 2394 | |||
| 2395 | /** |
||
| 2396 | * Get the code naf2008. |
||
| 2397 | * |
||
| 2398 | * @return string|null Returns the code naf2008. |
||
| 2399 | */ |
||
| 2400 | public function getCodeNaf2008(): ?string{ |
||
| 2403 | |||
| 2404 | /** |
||
| 2405 | * Get the code naf22008. |
||
| 2406 | * |
||
| 2407 | * @return string|null Returns the code naf22008. |
||
| 2408 | */ |
||
| 2409 | public function getCodeNaf22008(): ?string{ |
||
| 2412 | |||
| 2413 | /** |
||
| 2414 | * Get the code naf32008. |
||
| 2415 | * |
||
| 2416 | * @return string|null Returns the code naf32008. |
||
| 2417 | */ |
||
| 2418 | public function getCodeNaf32008(): ?string{ |
||
| 2421 | |||
| 2422 | /** |
||
| 2423 | * Get the code naf. |
||
| 2424 | * |
||
| 2425 | * @return string|null Returns the code naf. |
||
| 2426 | */ |
||
| 2427 | public function getCodeNaf(): ?string{ |
||
| 2430 | |||
| 2431 | /** |
||
| 2432 | * Get the code naf2. |
||
| 2433 | * |
||
| 2434 | * @return string|null Returns the code naf2. |
||
| 2435 | */ |
||
| 2436 | public function getCodeNaf2(): ?string{ |
||
| 2439 | |||
| 2440 | /** |
||
| 2441 | * Get the code naf3. |
||
| 2442 | * |
||
| 2443 | * @return string|null Returns the code naf3. |
||
| 2444 | */ |
||
| 2445 | public function getCodeNaf3(): ?string{ |
||
| 2448 | |||
| 2449 | /** |
||
| 2450 | * Get the code officiel commune. |
||
| 2451 | * |
||
| 2452 | * @return string|null Returns the code officiel commune. |
||
| 2453 | */ |
||
| 2454 | public function getCodeOfficielCommune(): ?string{ |
||
| 2457 | |||
| 2458 | /** |
||
| 2459 | * Get the code pays. |
||
| 2460 | * |
||
| 2461 | * @return string|null Returns the code pays. |
||
| 2462 | */ |
||
| 2463 | public function getCodePays(): ?string{ |
||
| 2466 | |||
| 2467 | /** |
||
| 2468 | * Get the code pays residence. |
||
| 2469 | * |
||
| 2470 | * @return string|null Returns the code pays residence. |
||
| 2471 | */ |
||
| 2472 | public function getCodePaysResidence(): ?string{ |
||
| 2475 | |||
| 2476 | /** |
||
| 2477 | * Get the code postal. |
||
| 2478 | * |
||
| 2479 | * @return string|null Returns the code postal. |
||
| 2480 | */ |
||
| 2481 | public function getCodePostal(): ?string{ |
||
| 2484 | |||
| 2485 | /** |
||
| 2486 | * Get the coeff aubry2. |
||
| 2487 | * |
||
| 2488 | * @return float|null Returns the coeff aubry2. |
||
| 2489 | */ |
||
| 2490 | public function getCoeffAubry2(): ?float{ |
||
| 2493 | |||
| 2494 | /** |
||
| 2495 | * Get the complement. |
||
| 2496 | * |
||
| 2497 | * @return string|null Returns the complement. |
||
| 2498 | */ |
||
| 2499 | public function getComplement(): ?string{ |
||
| 2502 | |||
| 2503 | /** |
||
| 2504 | * Get the compte acompte employe. |
||
| 2505 | * |
||
| 2506 | * @return bool|null Returns the compte acompte employe. |
||
| 2507 | */ |
||
| 2508 | public function getCompteAcompteEmploye(): ?bool{ |
||
| 2511 | |||
| 2512 | /** |
||
| 2513 | * Get the compte charge1. |
||
| 2514 | * |
||
| 2515 | * @return string|null Returns the compte charge1. |
||
| 2516 | */ |
||
| 2517 | public function getCompteCharge1(): ?string{ |
||
| 2520 | |||
| 2521 | /** |
||
| 2522 | * Get the compte charge10. |
||
| 2523 | * |
||
| 2524 | * @return string|null Returns the compte charge10. |
||
| 2525 | */ |
||
| 2526 | public function getCompteCharge10(): ?string{ |
||
| 2529 | |||
| 2530 | /** |
||
| 2531 | * Get the compte charge11. |
||
| 2532 | * |
||
| 2533 | * @return string|null Returns the compte charge11. |
||
| 2534 | */ |
||
| 2535 | public function getCompteCharge11(): ?string{ |
||
| 2538 | |||
| 2539 | /** |
||
| 2540 | * Get the compte charge2. |
||
| 2541 | * |
||
| 2542 | * @return string|null Returns the compte charge2. |
||
| 2543 | */ |
||
| 2544 | public function getCompteCharge2(): ?string{ |
||
| 2547 | |||
| 2548 | /** |
||
| 2549 | * Get the compte charge3. |
||
| 2550 | * |
||
| 2551 | * @return string|null Returns the compte charge3. |
||
| 2552 | */ |
||
| 2553 | public function getCompteCharge3(): ?string{ |
||
| 2556 | |||
| 2557 | /** |
||
| 2558 | * Get the compte charge4. |
||
| 2559 | * |
||
| 2560 | * @return string|null Returns the compte charge4. |
||
| 2561 | */ |
||
| 2562 | public function getCompteCharge4(): ?string{ |
||
| 2565 | |||
| 2566 | /** |
||
| 2567 | * Get the compte charge5. |
||
| 2568 | * |
||
| 2569 | * @return string|null Returns the compte charge5. |
||
| 2570 | */ |
||
| 2571 | public function getCompteCharge5(): ?string{ |
||
| 2574 | |||
| 2575 | /** |
||
| 2576 | * Get the compte charge6. |
||
| 2577 | * |
||
| 2578 | * @return string|null Returns the compte charge6. |
||
| 2579 | */ |
||
| 2580 | public function getCompteCharge6(): ?string{ |
||
| 2583 | |||
| 2584 | /** |
||
| 2585 | * Get the compte charge7. |
||
| 2586 | * |
||
| 2587 | * @return string|null Returns the compte charge7. |
||
| 2588 | */ |
||
| 2589 | public function getCompteCharge7(): ?string{ |
||
| 2592 | |||
| 2593 | /** |
||
| 2594 | * Get the compte charge8. |
||
| 2595 | * |
||
| 2596 | * @return string|null Returns the compte charge8. |
||
| 2597 | */ |
||
| 2598 | public function getCompteCharge8(): ?string{ |
||
| 2601 | |||
| 2602 | /** |
||
| 2603 | * Get the compte charge9. |
||
| 2604 | * |
||
| 2605 | * @return string|null Returns the compte charge9. |
||
| 2606 | */ |
||
| 2607 | public function getCompteCharge9(): ?string{ |
||
| 2610 | |||
| 2611 | /** |
||
| 2612 | * Get the compte charge aen. |
||
| 2613 | * |
||
| 2614 | * @return string|null Returns the compte charge aen. |
||
| 2615 | */ |
||
| 2616 | public function getCompteChargeAen(): ?string{ |
||
| 2619 | |||
| 2620 | /** |
||
| 2621 | * Get the compte charge fc. |
||
| 2622 | * |
||
| 2623 | * @return string|null Returns the compte charge fc. |
||
| 2624 | */ |
||
| 2625 | public function getCompteChargeFc(): ?string{ |
||
| 2628 | |||
| 2629 | /** |
||
| 2630 | * Get the compte charge ijss. |
||
| 2631 | * |
||
| 2632 | * @return string|null Returns the compte charge ijss. |
||
| 2633 | */ |
||
| 2634 | public function getCompteChargeIjss(): ?string{ |
||
| 2637 | |||
| 2638 | /** |
||
| 2639 | * Get the compte charge indem cp. |
||
| 2640 | * |
||
| 2641 | * @return string|null Returns the compte charge indem cp. |
||
| 2642 | */ |
||
| 2643 | public function getCompteChargeIndemCp(): ?string{ |
||
| 2646 | |||
| 2647 | /** |
||
| 2648 | * Get the compte saisie arret. |
||
| 2649 | * |
||
| 2650 | * @return string|null Returns the compte saisie arret. |
||
| 2651 | */ |
||
| 2652 | public function getCompteSaisieArret(): ?string{ |
||
| 2655 | |||
| 2656 | /** |
||
| 2657 | * Get the compte tiers1. |
||
| 2658 | * |
||
| 2659 | * @return string|null Returns the compte tiers1. |
||
| 2660 | */ |
||
| 2661 | public function getCompteTiers1(): ?string{ |
||
| 2664 | |||
| 2665 | /** |
||
| 2666 | * Get the compte tiers2. |
||
| 2667 | * |
||
| 2668 | * @return string|null Returns the compte tiers2. |
||
| 2669 | */ |
||
| 2670 | public function getCompteTiers2(): ?string{ |
||
| 2673 | |||
| 2674 | /** |
||
| 2675 | * Get the dadsu code c colect1. |
||
| 2676 | * |
||
| 2677 | * @return string|null Returns the dadsu code c colect1. |
||
| 2678 | */ |
||
| 2679 | public function getDadsuCodeCColect1(): ?string{ |
||
| 2682 | |||
| 2683 | /** |
||
| 2684 | * Get the dadsu code c colect2. |
||
| 2685 | * |
||
| 2686 | * @return string|null Returns the dadsu code c colect2. |
||
| 2687 | */ |
||
| 2688 | public function getDadsuCodeCColect2(): ?string{ |
||
| 2691 | |||
| 2692 | /** |
||
| 2693 | * Get the dadsu code c colect3. |
||
| 2694 | * |
||
| 2695 | * @return string|null Returns the dadsu code c colect3. |
||
| 2696 | */ |
||
| 2697 | public function getDadsuCodeCColect3(): ?string{ |
||
| 2700 | |||
| 2701 | /** |
||
| 2702 | * Get the dadsu code c colect4. |
||
| 2703 | * |
||
| 2704 | * @return string|null Returns the dadsu code c colect4. |
||
| 2705 | */ |
||
| 2706 | public function getDadsuCodeCColect4(): ?string{ |
||
| 2709 | |||
| 2710 | /** |
||
| 2711 | * Get the dadsu code c colect5. |
||
| 2712 | * |
||
| 2713 | * @return string|null Returns the dadsu code c colect5. |
||
| 2714 | */ |
||
| 2715 | public function getDadsuCodeCColect5(): ?string{ |
||
| 2718 | |||
| 2719 | /** |
||
| 2720 | * Get the dadsu code c colect6. |
||
| 2721 | * |
||
| 2722 | * @return string|null Returns the dadsu code c colect6. |
||
| 2723 | */ |
||
| 2724 | public function getDadsuCodeCColect6(): ?string{ |
||
| 2727 | |||
| 2728 | /** |
||
| 2729 | * Get the date allegement. |
||
| 2730 | * |
||
| 2731 | * @return DateTime|null Returns the date allegement. |
||
| 2732 | */ |
||
| 2733 | public function getDateAllegement(): ?DateTime{ |
||
| 2736 | |||
| 2737 | /** |
||
| 2738 | * Get the date ducs. |
||
| 2739 | * |
||
| 2740 | * @return DateTime|null Returns the date ducs. |
||
| 2741 | */ |
||
| 2742 | public function getDateDucs(): ?DateTime{ |
||
| 2745 | |||
| 2746 | /** |
||
| 2747 | * Get the date fin cospar. |
||
| 2748 | * |
||
| 2749 | * @return DateTime|null Returns the date fin cospar. |
||
| 2750 | */ |
||
| 2751 | public function getDateFinCospar(): ?DateTime{ |
||
| 2754 | |||
| 2755 | /** |
||
| 2756 | * Get the date fin cp. |
||
| 2757 | * |
||
| 2758 | * @return DateTime|null Returns the date fin cp. |
||
| 2759 | */ |
||
| 2760 | public function getDateFinCp(): ?DateTime{ |
||
| 2763 | |||
| 2764 | /** |
||
| 2765 | * Get the date modification. |
||
| 2766 | * |
||
| 2767 | * @return DateTime|null Returns the date modification. |
||
| 2768 | */ |
||
| 2769 | public function getDateModification(): ?DateTime{ |
||
| 2772 | |||
| 2773 | /** |
||
| 2774 | * Get the date publication. |
||
| 2775 | * |
||
| 2776 | * @return DateTime|null Returns the date publication. |
||
| 2777 | */ |
||
| 2778 | public function getDatePublication(): ?DateTime{ |
||
| 2781 | |||
| 2782 | /** |
||
| 2783 | * Get the debut envoi. |
||
| 2784 | * |
||
| 2785 | * @return DateTime|null Returns the debut envoi. |
||
| 2786 | */ |
||
| 2787 | public function getDebutEnvoi(): ?DateTime{ |
||
| 2790 | |||
| 2791 | /** |
||
| 2792 | * Get the detail salarie. |
||
| 2793 | * |
||
| 2794 | * @return bool|null Returns the detail salarie. |
||
| 2795 | */ |
||
| 2796 | public function getDetailSalarie(): ?bool{ |
||
| 2799 | |||
| 2800 | /** |
||
| 2801 | * Get the domaine activite. |
||
| 2802 | * |
||
| 2803 | * @return string|null Returns the domaine activite. |
||
| 2804 | */ |
||
| 2805 | public function getDomaineActivite(): ?string{ |
||
| 2808 | |||
| 2809 | /** |
||
| 2810 | * Get the dossier comptable. |
||
| 2811 | * |
||
| 2812 | * @return string|null Returns the dossier comptable. |
||
| 2813 | */ |
||
| 2814 | public function getDossierComptable(): ?string{ |
||
| 2817 | |||
| 2818 | /** |
||
| 2819 | * Get the edition dif. |
||
| 2820 | * |
||
| 2821 | * @return bool|null Returns the edition dif. |
||
| 2822 | */ |
||
| 2823 | public function getEditionDif(): ?bool{ |
||
| 2826 | |||
| 2827 | /** |
||
| 2828 | * Get the edition dif bul. |
||
| 2829 | * |
||
| 2830 | * @return string|null Returns the edition dif bul. |
||
| 2831 | */ |
||
| 2832 | public function getEditionDifBul(): ?string{ |
||
| 2835 | |||
| 2836 | /** |
||
| 2837 | * Get the emetteur1. |
||
| 2838 | * |
||
| 2839 | * @return int|null Returns the emetteur1. |
||
| 2840 | */ |
||
| 2841 | public function getEmetteur1(): ?int{ |
||
| 2844 | |||
| 2845 | /** |
||
| 2846 | * Get the emetteur2. |
||
| 2847 | * |
||
| 2848 | * @return int|null Returns the emetteur2. |
||
| 2849 | */ |
||
| 2850 | public function getEmetteur2(): ?int{ |
||
| 2853 | |||
| 2854 | /** |
||
| 2855 | * Get the emetteur3. |
||
| 2856 | * |
||
| 2857 | * @return int|null Returns the emetteur3. |
||
| 2858 | */ |
||
| 2859 | public function getEmetteur3(): ?int{ |
||
| 2862 | |||
| 2863 | /** |
||
| 2864 | * Get the enseigne. |
||
| 2865 | * |
||
| 2866 | * @return string|null Returns the enseigne. |
||
| 2867 | */ |
||
| 2868 | public function getEnseigne(): ?string{ |
||
| 2871 | |||
| 2872 | /** |
||
| 2873 | * Get the etab decl dadsu. |
||
| 2874 | * |
||
| 2875 | * @return bool|null Returns the etab decl dadsu. |
||
| 2876 | */ |
||
| 2877 | public function getEtabDeclDadsu(): ?bool{ |
||
| 2880 | |||
| 2881 | /** |
||
| 2882 | * Get the exclure dadsu. |
||
| 2883 | * |
||
| 2884 | * @return bool|null Returns the exclure dadsu. |
||
| 2885 | */ |
||
| 2886 | public function getExclureDadsu(): ?bool{ |
||
| 2889 | |||
| 2890 | /** |
||
| 2891 | * Get the exo lodeom renforcee. |
||
| 2892 | * |
||
| 2893 | * @return bool|null Returns the exo lodeom renforcee. |
||
| 2894 | */ |
||
| 2895 | public function getExoLodeomRenforcee(): ?bool{ |
||
| 2898 | |||
| 2899 | /** |
||
| 2900 | * Get the fax. |
||
| 2901 | * |
||
| 2902 | * @return string|null Returns the fax. |
||
| 2903 | */ |
||
| 2904 | public function getFax(): ?string{ |
||
| 2907 | |||
| 2908 | /** |
||
| 2909 | * Get the fin envoi. |
||
| 2910 | * |
||
| 2911 | * @return DateTime|null Returns the fin envoi. |
||
| 2912 | */ |
||
| 2913 | public function getFinEnvoi(): ?DateTime{ |
||
| 2916 | |||
| 2917 | /** |
||
| 2918 | * Get the gere fraction etab. |
||
| 2919 | * |
||
| 2920 | * @return bool|null Returns the gere fraction etab. |
||
| 2921 | */ |
||
| 2922 | public function getGereFractionEtab(): ?bool{ |
||
| 2925 | |||
| 2926 | /** |
||
| 2927 | * Get the gestion contingent. |
||
| 2928 | * |
||
| 2929 | * @return bool|null Returns the gestion contingent. |
||
| 2930 | */ |
||
| 2931 | public function getGestionContingent(): ?bool{ |
||
| 2934 | |||
| 2935 | /** |
||
| 2936 | * Get the gestion ducs1. |
||
| 2937 | * |
||
| 2938 | * @return string|null Returns the gestion ducs1. |
||
| 2939 | */ |
||
| 2940 | public function getGestionDucs1(): ?string{ |
||
| 2943 | |||
| 2944 | /** |
||
| 2945 | * Get the gestion ducs2. |
||
| 2946 | * |
||
| 2947 | * @return string|null Returns the gestion ducs2. |
||
| 2948 | */ |
||
| 2949 | public function getGestionDucs2(): ?string{ |
||
| 2952 | |||
| 2953 | /** |
||
| 2954 | * Get the gestion jour ferie etab. |
||
| 2955 | * |
||
| 2956 | * @return bool|null Returns the gestion jour ferie etab. |
||
| 2957 | */ |
||
| 2958 | public function getGestionJourFerieEtab(): ?bool{ |
||
| 2961 | |||
| 2962 | /** |
||
| 2963 | * Get the gestion rtt. |
||
| 2964 | * |
||
| 2965 | * @return bool|null Returns the gestion rtt. |
||
| 2966 | */ |
||
| 2967 | public function getGestionRtt(): ?bool{ |
||
| 2970 | |||
| 2971 | /** |
||
| 2972 | * Get the gestion repos comp. |
||
| 2973 | * |
||
| 2974 | * @return bool|null Returns the gestion repos comp. |
||
| 2975 | */ |
||
| 2976 | public function getGestionReposComp(): ?bool{ |
||
| 2979 | |||
| 2980 | /** |
||
| 2981 | * Get the gestion repos recup. |
||
| 2982 | * |
||
| 2983 | * @return bool|null Returns the gestion repos recup. |
||
| 2984 | */ |
||
| 2985 | public function getGestionReposRecup(): ?bool{ |
||
| 2988 | |||
| 2989 | /** |
||
| 2990 | * Get the gestion repos remplace. |
||
| 2991 | * |
||
| 2992 | * @return bool|null Returns the gestion repos remplace. |
||
| 2993 | */ |
||
| 2994 | public function getGestionReposRemplace(): ?bool{ |
||
| 2997 | |||
| 2998 | /** |
||
| 2999 | * Get the gestion sem type. |
||
| 3000 | * |
||
| 3001 | * @return bool|null Returns the gestion sem type. |
||
| 3002 | */ |
||
| 3003 | public function getGestionSemType(): ?bool{ |
||
| 3006 | |||
| 3007 | /** |
||
| 3008 | * Get the iban1. |
||
| 3009 | * |
||
| 3010 | * @return string|null Returns the iban1. |
||
| 3011 | */ |
||
| 3012 | public function getIban1(): ?string{ |
||
| 3015 | |||
| 3016 | /** |
||
| 3017 | * Get the iban id client1. |
||
| 3018 | * |
||
| 3019 | * @return string|null Returns the iban id client1. |
||
| 3020 | */ |
||
| 3021 | public function getIbanIdClient1(): ?string{ |
||
| 3024 | |||
| 3025 | /** |
||
| 3026 | * Get the inscrit rep metier. |
||
| 3027 | * |
||
| 3028 | * @return bool|null Returns the inscrit rep metier. |
||
| 3029 | */ |
||
| 3030 | public function getInscritRepMetier(): ?bool{ |
||
| 3033 | |||
| 3034 | /** |
||
| 3035 | * Get the jour verse salaire. |
||
| 3036 | * |
||
| 3037 | * @return string|null Returns the jour verse salaire. |
||
| 3038 | */ |
||
| 3039 | public function getJourVerseSalaire(): ?string{ |
||
| 3042 | |||
| 3043 | /** |
||
| 3044 | * Get the maintien intervient cp. |
||
| 3045 | * |
||
| 3046 | * @return bool|null Returns the maintien intervient cp. |
||
| 3047 | */ |
||
| 3048 | public function getMaintienIntervientCp(): ?bool{ |
||
| 3051 | |||
| 3052 | /** |
||
| 3053 | * Get the maintien salaire. |
||
| 3054 | * |
||
| 3055 | * @return bool|null Returns the maintien salaire. |
||
| 3056 | */ |
||
| 3057 | public function getMaintienSalaire(): ?bool{ |
||
| 3060 | |||
| 3061 | /** |
||
| 3062 | * Get the maintien specifique. |
||
| 3063 | * |
||
| 3064 | * @return bool|null Returns the maintien specifique. |
||
| 3065 | */ |
||
| 3066 | public function getMaintienSpecifique(): ?bool{ |
||
| 3069 | |||
| 3070 | /** |
||
| 3071 | * Get the masque service employe. |
||
| 3072 | * |
||
| 3073 | * @return bool|null Returns the masque service employe. |
||
| 3074 | */ |
||
| 3075 | public function getMasqueServiceEmploye(): ?bool{ |
||
| 3078 | |||
| 3079 | /** |
||
| 3080 | * Get the methode cp. |
||
| 3081 | * |
||
| 3082 | * @return string|null Returns the methode cp. |
||
| 3083 | */ |
||
| 3084 | public function getMethodeCp(): ?string{ |
||
| 3087 | |||
| 3088 | /** |
||
| 3089 | * Get the mois cloture cp. |
||
| 3090 | * |
||
| 3091 | * @return string|null Returns the mois cloture cp. |
||
| 3092 | */ |
||
| 3093 | public function getMoisClotureCp(): ?string{ |
||
| 3096 | |||
| 3097 | /** |
||
| 3098 | * Get the mois cloture dif. |
||
| 3099 | * |
||
| 3100 | * @return string|null Returns the mois cloture dif. |
||
| 3101 | */ |
||
| 3102 | public function getMoisClotureDif(): ?string{ |
||
| 3105 | |||
| 3106 | /** |
||
| 3107 | * Get the mois cloture rtt. |
||
| 3108 | * |
||
| 3109 | * @return string|null Returns the mois cloture rtt. |
||
| 3110 | */ |
||
| 3111 | public function getMoisClotureRtt(): ?string{ |
||
| 3114 | |||
| 3115 | /** |
||
| 3116 | * Get the montant1. |
||
| 3117 | * |
||
| 3118 | * @return float|null Returns the montant1. |
||
| 3119 | */ |
||
| 3120 | public function getMontant1(): ?float{ |
||
| 3123 | |||
| 3124 | /** |
||
| 3125 | * Get the montant2. |
||
| 3126 | * |
||
| 3127 | * @return float|null Returns the montant2. |
||
| 3128 | */ |
||
| 3129 | public function getMontant2(): ?float{ |
||
| 3132 | |||
| 3133 | /** |
||
| 3134 | * Get the montant3. |
||
| 3135 | * |
||
| 3136 | * @return float|null Returns the montant3. |
||
| 3137 | */ |
||
| 3138 | public function getMontant3(): ?float{ |
||
| 3141 | |||
| 3142 | /** |
||
| 3143 | * Get the montant4. |
||
| 3144 | * |
||
| 3145 | * @return float|null Returns the montant4. |
||
| 3146 | */ |
||
| 3147 | public function getMontant4(): ?float{ |
||
| 3150 | |||
| 3151 | /** |
||
| 3152 | * Get the montant5. |
||
| 3153 | * |
||
| 3154 | * @return float|null Returns the montant5. |
||
| 3155 | */ |
||
| 3156 | public function getMontant5(): ?float{ |
||
| 3159 | |||
| 3160 | /** |
||
| 3161 | * Get the montant allegement. |
||
| 3162 | * |
||
| 3163 | * @return float|null Returns the montant allegement. |
||
| 3164 | */ |
||
| 3165 | public function getMontantAllegement(): ?float{ |
||
| 3168 | |||
| 3169 | /** |
||
| 3170 | * Get the nature analytique. |
||
| 3171 | * |
||
| 3172 | * @return string|null Returns the nature analytique. |
||
| 3173 | */ |
||
| 3174 | public function getNatureAnalytique(): ?string{ |
||
| 3177 | |||
| 3178 | /** |
||
| 3179 | * Get the nb hdif an. |
||
| 3180 | * |
||
| 3181 | * @return float|null Returns the nb hdif an. |
||
| 3182 | */ |
||
| 3183 | public function getNbHdifAn(): ?float{ |
||
| 3186 | |||
| 3187 | /** |
||
| 3188 | * Get the nb h jour1. |
||
| 3189 | * |
||
| 3190 | * @return float|null Returns the nb h jour1. |
||
| 3191 | */ |
||
| 3192 | public function getNbHJour1(): ?float{ |
||
| 3195 | |||
| 3196 | /** |
||
| 3197 | * Get the nb h jour2. |
||
| 3198 | * |
||
| 3199 | * @return float|null Returns the nb h jour2. |
||
| 3200 | */ |
||
| 3201 | public function getNbHJour2(): ?float{ |
||
| 3204 | |||
| 3205 | /** |
||
| 3206 | * Get the nb h jour3. |
||
| 3207 | * |
||
| 3208 | * @return float|null Returns the nb h jour3. |
||
| 3209 | */ |
||
| 3210 | public function getNbHJour3(): ?float{ |
||
| 3213 | |||
| 3214 | /** |
||
| 3215 | * Get the nb h jour4. |
||
| 3216 | * |
||
| 3217 | * @return float|null Returns the nb h jour4. |
||
| 3218 | */ |
||
| 3219 | public function getNbHJour4(): ?float{ |
||
| 3222 | |||
| 3223 | /** |
||
| 3224 | * Get the nb h jour5. |
||
| 3225 | * |
||
| 3226 | * @return float|null Returns the nb h jour5. |
||
| 3227 | */ |
||
| 3228 | public function getNbHJour5(): ?float{ |
||
| 3231 | |||
| 3232 | /** |
||
| 3233 | * Get the nb h jour6. |
||
| 3234 | * |
||
| 3235 | * @return float|null Returns the nb h jour6. |
||
| 3236 | */ |
||
| 3237 | public function getNbHJour6(): ?float{ |
||
| 3240 | |||
| 3241 | /** |
||
| 3242 | * Get the nb h jour7. |
||
| 3243 | * |
||
| 3244 | * @return float|null Returns the nb h jour7. |
||
| 3245 | */ |
||
| 3246 | public function getNbHJour7(): ?float{ |
||
| 3249 | |||
| 3250 | /** |
||
| 3251 | * Get the nb heure trav mois. |
||
| 3252 | * |
||
| 3253 | * @return float|null Returns the nb heure trav mois. |
||
| 3254 | */ |
||
| 3255 | public function getNbHeureTravMois(): ?float{ |
||
| 3258 | |||
| 3259 | /** |
||
| 3260 | * Get the nb jour base. |
||
| 3261 | * |
||
| 3262 | * @return float|null Returns the nb jour base. |
||
| 3263 | */ |
||
| 3264 | public function getNbJourBase(): ?float{ |
||
| 3267 | |||
| 3268 | /** |
||
| 3269 | * Get the nb jour base cp. |
||
| 3270 | * |
||
| 3271 | * @return float|null Returns the nb jour base cp. |
||
| 3272 | */ |
||
| 3273 | public function getNbJourBaseCp(): ?float{ |
||
| 3276 | |||
| 3277 | /** |
||
| 3278 | * Get the nb jour cp acquis. |
||
| 3279 | * |
||
| 3280 | * @return float|null Returns the nb jour cp acquis. |
||
| 3281 | */ |
||
| 3282 | public function getNbJourCpAcquis(): ?float{ |
||
| 3285 | |||
| 3286 | /** |
||
| 3287 | * Get the nb m ajout per. |
||
| 3288 | * |
||
| 3289 | * @return string|null Returns the nb m ajout per. |
||
| 3290 | */ |
||
| 3291 | public function getNbMAjoutPer(): ?string{ |
||
| 3294 | |||
| 3295 | /** |
||
| 3296 | * Get the nb mois aubry1. |
||
| 3297 | * |
||
| 3298 | * @return float|null Returns the nb mois aubry1. |
||
| 3299 | */ |
||
| 3300 | public function getNbMoisAubry1(): ?float{ |
||
| 3303 | |||
| 3304 | /** |
||
| 3305 | * Get the nbh jour rtt. |
||
| 3306 | * |
||
| 3307 | * @return float|null Returns the nbh jour rtt. |
||
| 3308 | */ |
||
| 3309 | public function getNbhJourRtt(): ?float{ |
||
| 3312 | |||
| 3313 | /** |
||
| 3314 | * Get the ne pas activer loi fillon2003. |
||
| 3315 | * |
||
| 3316 | * @return bool|null Returns the ne pas activer loi fillon2003. |
||
| 3317 | */ |
||
| 3318 | public function getNePasActiverLoiFillon2003(): ?bool{ |
||
| 3321 | |||
| 3322 | /** |
||
| 3323 | * Get the nom ville. |
||
| 3324 | * |
||
| 3325 | * @return string|null Returns the nom ville. |
||
| 3326 | */ |
||
| 3327 | public function getNomVille(): ?string{ |
||
| 3330 | |||
| 3331 | /** |
||
| 3332 | * Get the nom ville insee. |
||
| 3333 | * |
||
| 3334 | * @return string|null Returns the nom ville insee. |
||
| 3335 | */ |
||
| 3336 | public function getNomVilleInsee(): ?string{ |
||
| 3339 | |||
| 3340 | /** |
||
| 3341 | * Get the nom voie. |
||
| 3342 | * |
||
| 3343 | * @return string|null Returns the nom voie. |
||
| 3344 | */ |
||
| 3345 | public function getNomVoie(): ?string{ |
||
| 3348 | |||
| 3349 | /** |
||
| 3350 | * Get the num voie. |
||
| 3351 | * |
||
| 3352 | * @return string|null Returns the num voie. |
||
| 3353 | */ |
||
| 3354 | public function getNumVoie(): ?string{ |
||
| 3357 | |||
| 3358 | /** |
||
| 3359 | * Get the opca dif. |
||
| 3360 | * |
||
| 3361 | * @return string|null Returns the opca dif. |
||
| 3362 | */ |
||
| 3363 | public function getOpcaDif(): ?string{ |
||
| 3366 | |||
| 3367 | /** |
||
| 3368 | * Get the p lafond exo. |
||
| 3369 | * |
||
| 3370 | * @return float|null Returns the p lafond exo. |
||
| 3371 | */ |
||
| 3372 | public function getPLafondExo(): ?float{ |
||
| 3375 | |||
| 3376 | /** |
||
| 3377 | * Get the paie decalee. |
||
| 3378 | * |
||
| 3379 | * @return bool|null Returns the paie decalee. |
||
| 3380 | */ |
||
| 3381 | public function getPaieDecalee(): ?bool{ |
||
| 3384 | |||
| 3385 | /** |
||
| 3386 | * Get the plafond1 caisse1. |
||
| 3387 | * |
||
| 3388 | * @return float|null Returns the plafond1 caisse1. |
||
| 3389 | */ |
||
| 3390 | public function getPlafond1Caisse1(): ?float{ |
||
| 3393 | |||
| 3394 | /** |
||
| 3395 | * Get the plafond1 caisse2. |
||
| 3396 | * |
||
| 3397 | * @return float|null Returns the plafond1 caisse2. |
||
| 3398 | */ |
||
| 3399 | public function getPlafond1Caisse2(): ?float{ |
||
| 3402 | |||
| 3403 | /** |
||
| 3404 | * Get the plafond1 caisse3. |
||
| 3405 | * |
||
| 3406 | * @return float|null Returns the plafond1 caisse3. |
||
| 3407 | */ |
||
| 3408 | public function getPlafond1Caisse3(): ?float{ |
||
| 3411 | |||
| 3412 | /** |
||
| 3413 | * Get the plafond2 caisse1. |
||
| 3414 | * |
||
| 3415 | * @return float|null Returns the plafond2 caisse1. |
||
| 3416 | */ |
||
| 3417 | public function getPlafond2Caisse1(): ?float{ |
||
| 3420 | |||
| 3421 | /** |
||
| 3422 | * Get the plafond2 caisse2. |
||
| 3423 | * |
||
| 3424 | * @return float|null Returns the plafond2 caisse2. |
||
| 3425 | */ |
||
| 3426 | public function getPlafond2Caisse2(): ?float{ |
||
| 3429 | |||
| 3430 | /** |
||
| 3431 | * Get the plafond2 caisse3. |
||
| 3432 | * |
||
| 3433 | * @return float|null Returns the plafond2 caisse3. |
||
| 3434 | */ |
||
| 3435 | public function getPlafond2Caisse3(): ?float{ |
||
| 3438 | |||
| 3439 | /** |
||
| 3440 | * Get the pourcent bonif. |
||
| 3441 | * |
||
| 3442 | * @return float|null Returns the pourcent bonif. |
||
| 3443 | */ |
||
| 3444 | public function getPourcentBonif(): ?float{ |
||
| 3447 | |||
| 3448 | /** |
||
| 3449 | * Get the pourcent exo. |
||
| 3450 | * |
||
| 3451 | * @return float|null Returns the pourcent exo. |
||
| 3452 | */ |
||
| 3453 | public function getPourcentExo(): ?float{ |
||
| 3456 | |||
| 3457 | /** |
||
| 3458 | * Get the pourcent transport. |
||
| 3459 | * |
||
| 3460 | * @return float|null Returns the pourcent transport. |
||
| 3461 | */ |
||
| 3462 | public function getPourcentTransport(): ?float{ |
||
| 3465 | |||
| 3466 | /** |
||
| 3467 | * Get the pourcentage imp. |
||
| 3468 | * |
||
| 3469 | * @return float|null Returns the pourcentage imp. |
||
| 3470 | */ |
||
| 3471 | public function getPourcentageImp(): ?float{ |
||
| 3474 | |||
| 3475 | /** |
||
| 3476 | * Get the prof spectacle. |
||
| 3477 | * |
||
| 3478 | * @return bool|null Returns the prof spectacle. |
||
| 3479 | */ |
||
| 3480 | public function getProfSpectacle(): ?bool{ |
||
| 3483 | |||
| 3484 | /** |
||
| 3485 | * Get the profession. |
||
| 3486 | * |
||
| 3487 | * @return string|null Returns the profession. |
||
| 3488 | */ |
||
| 3489 | public function getProfession(): ?string{ |
||
| 3492 | |||
| 3493 | /** |
||
| 3494 | * Get the prud type. |
||
| 3495 | * |
||
| 3496 | * @return string|null Returns the prud type. |
||
| 3497 | */ |
||
| 3498 | public function getPrudType(): ?string{ |
||
| 3501 | |||
| 3502 | /** |
||
| 3503 | * Get the prud type dadsu. |
||
| 3504 | * |
||
| 3505 | * @return string|null Returns the prud type dadsu. |
||
| 3506 | */ |
||
| 3507 | public function getPrudTypeDadsu(): ?string{ |
||
| 3510 | |||
| 3511 | /** |
||
| 3512 | * Get the publication. |
||
| 3513 | * |
||
| 3514 | * @return bool|null Returns the publication. |
||
| 3515 | */ |
||
| 3516 | public function getPublication(): ?bool{ |
||
| 3519 | |||
| 3520 | /** |
||
| 3521 | * Get the qualite. |
||
| 3522 | * |
||
| 3523 | * @return string|null Returns the qualite. |
||
| 3524 | */ |
||
| 3525 | public function getQualite(): ?string{ |
||
| 3528 | |||
| 3529 | /** |
||
| 3530 | * Get the rtt1. |
||
| 3531 | * |
||
| 3532 | * @return float|null Returns the rtt1. |
||
| 3533 | */ |
||
| 3534 | public function getRtt1(): ?float{ |
||
| 3537 | |||
| 3538 | /** |
||
| 3539 | * Get the rtt10. |
||
| 3540 | * |
||
| 3541 | * @return float|null Returns the rtt10. |
||
| 3542 | */ |
||
| 3543 | public function getRtt10(): ?float{ |
||
| 3546 | |||
| 3547 | /** |
||
| 3548 | * Get the rtt11. |
||
| 3549 | * |
||
| 3550 | * @return float|null Returns the rtt11. |
||
| 3551 | */ |
||
| 3552 | public function getRtt11(): ?float{ |
||
| 3555 | |||
| 3556 | /** |
||
| 3557 | * Get the rtt12. |
||
| 3558 | * |
||
| 3559 | * @return float|null Returns the rtt12. |
||
| 3560 | */ |
||
| 3561 | public function getRtt12(): ?float{ |
||
| 3564 | |||
| 3565 | /** |
||
| 3566 | * Get the rtt2. |
||
| 3567 | * |
||
| 3568 | * @return float|null Returns the rtt2. |
||
| 3569 | */ |
||
| 3570 | public function getRtt2(): ?float{ |
||
| 3573 | |||
| 3574 | /** |
||
| 3575 | * Get the rtt3. |
||
| 3576 | * |
||
| 3577 | * @return float|null Returns the rtt3. |
||
| 3578 | */ |
||
| 3579 | public function getRtt3(): ?float{ |
||
| 3582 | |||
| 3583 | /** |
||
| 3584 | * Get the rtt4. |
||
| 3585 | * |
||
| 3586 | * @return float|null Returns the rtt4. |
||
| 3587 | */ |
||
| 3588 | public function getRtt4(): ?float{ |
||
| 3591 | |||
| 3592 | /** |
||
| 3593 | * Get the rtt5. |
||
| 3594 | * |
||
| 3595 | * @return float|null Returns the rtt5. |
||
| 3596 | */ |
||
| 3597 | public function getRtt5(): ?float{ |
||
| 3600 | |||
| 3601 | /** |
||
| 3602 | * Get the rtt6. |
||
| 3603 | * |
||
| 3604 | * @return float|null Returns the rtt6. |
||
| 3605 | */ |
||
| 3606 | public function getRtt6(): ?float{ |
||
| 3609 | |||
| 3610 | /** |
||
| 3611 | * Get the rtt7. |
||
| 3612 | * |
||
| 3613 | * @return float|null Returns the rtt7. |
||
| 3614 | */ |
||
| 3615 | public function getRtt7(): ?float{ |
||
| 3618 | |||
| 3619 | /** |
||
| 3620 | * Get the rtt8. |
||
| 3621 | * |
||
| 3622 | * @return float|null Returns the rtt8. |
||
| 3623 | */ |
||
| 3624 | public function getRtt8(): ?float{ |
||
| 3627 | |||
| 3628 | /** |
||
| 3629 | * Get the rtt9. |
||
| 3630 | * |
||
| 3631 | * @return float|null Returns the rtt9. |
||
| 3632 | */ |
||
| 3633 | public function getRtt9(): ?float{ |
||
| 3636 | |||
| 3637 | /** |
||
| 3638 | * Get the raison sociale. |
||
| 3639 | * |
||
| 3640 | * @return string|null Returns the raison sociale. |
||
| 3641 | */ |
||
| 3642 | public function getRaisonSociale(): ?string{ |
||
| 3645 | |||
| 3646 | /** |
||
| 3647 | * Get the reduction fillon. |
||
| 3648 | * |
||
| 3649 | * @return bool|null Returns the reduction fillon. |
||
| 3650 | */ |
||
| 3651 | public function getReductionFillon(): ?bool{ |
||
| 3654 | |||
| 3655 | /** |
||
| 3656 | * Get the responsable. |
||
| 3657 | * |
||
| 3658 | * @return string|null Returns the responsable. |
||
| 3659 | */ |
||
| 3660 | public function getResponsable(): ?string{ |
||
| 3663 | |||
| 3664 | /** |
||
| 3665 | * Get the rib1. |
||
| 3666 | * |
||
| 3667 | * @return string|null Returns the rib1. |
||
| 3668 | */ |
||
| 3669 | public function getRib1(): ?string{ |
||
| 3672 | |||
| 3673 | /** |
||
| 3674 | * Get the rib2. |
||
| 3675 | * |
||
| 3676 | * @return string|null Returns the rib2. |
||
| 3677 | */ |
||
| 3678 | public function getRib2(): ?string{ |
||
| 3681 | |||
| 3682 | /** |
||
| 3683 | * Get the rib3. |
||
| 3684 | * |
||
| 3685 | * @return string|null Returns the rib3. |
||
| 3686 | */ |
||
| 3687 | public function getRib3(): ?string{ |
||
| 3690 | |||
| 3691 | /** |
||
| 3692 | * Get the siege dadsu. |
||
| 3693 | * |
||
| 3694 | * @return bool|null Returns the siege dadsu. |
||
| 3695 | */ |
||
| 3696 | public function getSiegeDadsu(): ?bool{ |
||
| 3699 | |||
| 3700 | /** |
||
| 3701 | * Get the siret. |
||
| 3702 | * |
||
| 3703 | * @return string|null Returns the siret. |
||
| 3704 | */ |
||
| 3705 | public function getSiret(): ?string{ |
||
| 3708 | |||
| 3709 | /** |
||
| 3710 | * Get the situation geo. |
||
| 3711 | * |
||
| 3712 | * @return string|null Returns the situation geo. |
||
| 3713 | */ |
||
| 3714 | public function getSituationGeo(): ?string{ |
||
| 3717 | |||
| 3718 | /** |
||
| 3719 | * Get the subrogation. |
||
| 3720 | * |
||
| 3721 | * @return bool|null Returns the subrogation. |
||
| 3722 | */ |
||
| 3723 | public function getSubrogation(): ?bool{ |
||
| 3726 | |||
| 3727 | /** |
||
| 3728 | * Get the suivi analytique. |
||
| 3729 | * |
||
| 3730 | * @return bool|null Returns the suivi analytique. |
||
| 3731 | */ |
||
| 3732 | public function getSuiviAnalytique(): ?bool{ |
||
| 3735 | |||
| 3736 | /** |
||
| 3737 | * Get the tds128. |
||
| 3738 | * |
||
| 3739 | * @return string|null Returns the tds128. |
||
| 3740 | */ |
||
| 3741 | public function getTds128(): ?string{ |
||
| 3744 | |||
| 3745 | /** |
||
| 3746 | * Get the tds19. |
||
| 3747 | * |
||
| 3748 | * @return string|null Returns the tds19. |
||
| 3749 | */ |
||
| 3750 | public function getTds19(): ?string{ |
||
| 3753 | |||
| 3754 | /** |
||
| 3755 | * Get the tds47. |
||
| 3756 | * |
||
| 3757 | * @return string|null Returns the tds47. |
||
| 3758 | */ |
||
| 3759 | public function getTds47(): ?string{ |
||
| 3762 | |||
| 3763 | /** |
||
| 3764 | * Get the taux actionsociale. |
||
| 3765 | * |
||
| 3766 | * @return float|null Returns the taux actionsociale. |
||
| 3767 | */ |
||
| 3768 | public function getTauxActionsociale(): ?float{ |
||
| 3771 | |||
| 3772 | /** |
||
| 3773 | * Get the taux construction. |
||
| 3774 | * |
||
| 3775 | * @return float|null Returns the taux construction. |
||
| 3776 | */ |
||
| 3777 | public function getTauxConstruction(): ?float{ |
||
| 3780 | |||
| 3781 | /** |
||
| 3782 | * Get the taux formation. |
||
| 3783 | * |
||
| 3784 | * @return float|null Returns the taux formation. |
||
| 3785 | */ |
||
| 3786 | public function getTauxFormation(): ?float{ |
||
| 3789 | |||
| 3790 | /** |
||
| 3791 | * Get the taux h sup1. |
||
| 3792 | * |
||
| 3793 | * @return float|null Returns the taux h sup1. |
||
| 3794 | */ |
||
| 3795 | public function getTauxHSup1(): ?float{ |
||
| 3798 | |||
| 3799 | /** |
||
| 3800 | * Get the taux h sup2. |
||
| 3801 | * |
||
| 3802 | * @return float|null Returns the taux h sup2. |
||
| 3803 | */ |
||
| 3804 | public function getTauxHSup2(): ?float{ |
||
| 3807 | |||
| 3808 | /** |
||
| 3809 | * Get the taux h sup3. |
||
| 3810 | * |
||
| 3811 | * @return float|null Returns the taux h sup3. |
||
| 3812 | */ |
||
| 3813 | public function getTauxHSup3(): ?float{ |
||
| 3816 | |||
| 3817 | /** |
||
| 3818 | * Get the taux h sup4. |
||
| 3819 | * |
||
| 3820 | * @return float|null Returns the taux h sup4. |
||
| 3821 | */ |
||
| 3822 | public function getTauxHSup4(): ?float{ |
||
| 3825 | |||
| 3826 | /** |
||
| 3827 | * Get the taux h sup5. |
||
| 3828 | * |
||
| 3829 | * @return float|null Returns the taux h sup5. |
||
| 3830 | */ |
||
| 3831 | public function getTauxHSup5(): ?float{ |
||
| 3834 | |||
| 3835 | /** |
||
| 3836 | * Get the taux ret tr2 pp. |
||
| 3837 | * |
||
| 3838 | * @return float|null Returns the taux ret tr2 pp. |
||
| 3839 | */ |
||
| 3840 | public function getTauxRetTr2Pp(): ?float{ |
||
| 3843 | |||
| 3844 | /** |
||
| 3845 | * Get the taux ret tr2 ps. |
||
| 3846 | * |
||
| 3847 | * @return float|null Returns the taux ret tr2 ps. |
||
| 3848 | */ |
||
| 3849 | public function getTauxRetTr2Ps(): ?float{ |
||
| 3852 | |||
| 3853 | /** |
||
| 3854 | * Get the taux ret tr app. |
||
| 3855 | * |
||
| 3856 | * @return float|null Returns the taux ret tr app. |
||
| 3857 | */ |
||
| 3858 | public function getTauxRetTrApp(): ?float{ |
||
| 3861 | |||
| 3862 | /** |
||
| 3863 | * Get the taux ret tr aps. |
||
| 3864 | * |
||
| 3865 | * @return float|null Returns the taux ret tr aps. |
||
| 3866 | */ |
||
| 3867 | public function getTauxRetTrAps(): ?float{ |
||
| 3870 | |||
| 3871 | /** |
||
| 3872 | * Get the taux ret tr bpp. |
||
| 3873 | * |
||
| 3874 | * @return float|null Returns the taux ret tr bpp. |
||
| 3875 | */ |
||
| 3876 | public function getTauxRetTrBpp(): ?float{ |
||
| 3879 | |||
| 3880 | /** |
||
| 3881 | * Get the taux ret tr bps. |
||
| 3882 | * |
||
| 3883 | * @return float|null Returns the taux ret tr bps. |
||
| 3884 | */ |
||
| 3885 | public function getTauxRetTrBps(): ?float{ |
||
| 3888 | |||
| 3889 | /** |
||
| 3890 | * Get the taux ret tr cpp. |
||
| 3891 | * |
||
| 3892 | * @return float|null Returns the taux ret tr cpp. |
||
| 3893 | */ |
||
| 3894 | public function getTauxRetTrCpp(): ?float{ |
||
| 3897 | |||
| 3898 | /** |
||
| 3899 | * Get the taux ret tr cps. |
||
| 3900 | * |
||
| 3901 | * @return float|null Returns the taux ret tr cps. |
||
| 3902 | */ |
||
| 3903 | public function getTauxRetTrCps(): ?float{ |
||
| 3906 | |||
| 3907 | /** |
||
| 3908 | * Get the taux ret tr dpp. |
||
| 3909 | * |
||
| 3910 | * @return float|null Returns the taux ret tr dpp. |
||
| 3911 | */ |
||
| 3912 | public function getTauxRetTrDpp(): ?float{ |
||
| 3915 | |||
| 3916 | /** |
||
| 3917 | * Get the taux ret tr dps. |
||
| 3918 | * |
||
| 3919 | * @return float|null Returns the taux ret tr dps. |
||
| 3920 | */ |
||
| 3921 | public function getTauxRetTrDps(): ?float{ |
||
| 3924 | |||
| 3925 | /** |
||
| 3926 | * Get the taux sup formation. |
||
| 3927 | * |
||
| 3928 | * @return float|null Returns the taux sup formation. |
||
| 3929 | */ |
||
| 3930 | public function getTauxSupFormation(): ?float{ |
||
| 3933 | |||
| 3934 | /** |
||
| 3935 | * Get the taux taxe apprenti. |
||
| 3936 | * |
||
| 3937 | * @return float|null Returns the taux taxe apprenti. |
||
| 3938 | */ |
||
| 3939 | public function getTauxTaxeApprenti(): ?float{ |
||
| 3942 | |||
| 3943 | /** |
||
| 3944 | * Get the taux transport. |
||
| 3945 | * |
||
| 3946 | * @return float|null Returns the taux transport. |
||
| 3947 | */ |
||
| 3948 | public function getTauxTransport(): ?float{ |
||
| 3951 | |||
| 3952 | /** |
||
| 3953 | * Get the tel. |
||
| 3954 | * |
||
| 3955 | * @return string|null Returns the tel. |
||
| 3956 | */ |
||
| 3957 | public function getTel(): ?string{ |
||
| 3960 | |||
| 3961 | /** |
||
| 3962 | * Get the tx sal decote. |
||
| 3963 | * |
||
| 3964 | * @return float|null Returns the tx sal decote. |
||
| 3965 | */ |
||
| 3966 | public function getTxSalDecote(): ?float{ |
||
| 3969 | |||
| 3970 | /** |
||
| 3971 | * Get the type base caisse1. |
||
| 3972 | * |
||
| 3973 | * @return string|null Returns the type base caisse1. |
||
| 3974 | */ |
||
| 3975 | public function getTypeBaseCaisse1(): ?string{ |
||
| 3978 | |||
| 3979 | /** |
||
| 3980 | * Get the type base caisse2. |
||
| 3981 | * |
||
| 3982 | * @return string|null Returns the type base caisse2. |
||
| 3983 | */ |
||
| 3984 | public function getTypeBaseCaisse2(): ?string{ |
||
| 3987 | |||
| 3988 | /** |
||
| 3989 | * Get the type base caisse3. |
||
| 3990 | * |
||
| 3991 | * @return string|null Returns the type base caisse3. |
||
| 3992 | */ |
||
| 3993 | public function getTypeBaseCaisse3(): ?string{ |
||
| 3996 | |||
| 3997 | /** |
||
| 3998 | * Get the type bonif. |
||
| 3999 | * |
||
| 4000 | * @return string|null Returns the type bonif. |
||
| 4001 | */ |
||
| 4002 | public function getTypeBonif(): ?string{ |
||
| 4005 | |||
| 4006 | /** |
||
| 4007 | * Get the type domiciliation banque1. |
||
| 4008 | * |
||
| 4009 | * @return string|null Returns the type domiciliation banque1. |
||
| 4010 | */ |
||
| 4011 | public function getTypeDomiciliationBanque1(): ?string{ |
||
| 4014 | |||
| 4015 | /** |
||
| 4016 | * Get the type domiciliation banque2. |
||
| 4017 | * |
||
| 4018 | * @return string|null Returns the type domiciliation banque2. |
||
| 4019 | */ |
||
| 4020 | public function getTypeDomiciliationBanque2(): ?string{ |
||
| 4023 | |||
| 4024 | /** |
||
| 4025 | * Get the type domiciliation banque3. |
||
| 4026 | * |
||
| 4027 | * @return string|null Returns the type domiciliation banque3. |
||
| 4028 | */ |
||
| 4029 | public function getTypeDomiciliationBanque3(): ?string{ |
||
| 4032 | |||
| 4033 | /** |
||
| 4034 | * Get the type effectif. |
||
| 4035 | * |
||
| 4036 | * @return string|null Returns the type effectif. |
||
| 4037 | */ |
||
| 4038 | public function getTypeEffectif(): ?string{ |
||
| 4041 | |||
| 4042 | /** |
||
| 4043 | * Get the type maintien salaire. |
||
| 4044 | * |
||
| 4045 | * @return string|null Returns the type maintien salaire. |
||
| 4046 | */ |
||
| 4047 | public function getTypeMaintienSalaire(): ?string{ |
||
| 4050 | |||
| 4051 | /** |
||
| 4052 | * Get the type publication. |
||
| 4053 | * |
||
| 4054 | * @return string|null Returns the type publication. |
||
| 4055 | */ |
||
| 4056 | public function getTypePublication(): ?string{ |
||
| 4059 | |||
| 4060 | /** |
||
| 4061 | * Get the type smic. |
||
| 4062 | * |
||
| 4063 | * @return string|null Returns the type smic. |
||
| 4064 | */ |
||
| 4065 | public function getTypeSmic(): ?string{ |
||
| 4068 | |||
| 4069 | /** |
||
| 4070 | * Get the type saisie ab cp. |
||
| 4071 | * |
||
| 4072 | * @return string|null Returns the type saisie ab cp. |
||
| 4073 | */ |
||
| 4074 | public function getTypeSaisieAbCp(): ?string{ |
||
| 4077 | |||
| 4078 | /** |
||
| 4079 | * Get the urssaf alsace. |
||
| 4080 | * |
||
| 4081 | * @return bool|null Returns the urssaf alsace. |
||
| 4082 | */ |
||
| 4083 | public function getUrssafAlsace(): ?bool{ |
||
| 4086 | |||
| 4087 | /** |
||
| 4088 | * Get the zone specif. |
||
| 4089 | * |
||
| 4090 | * @return string|null Returns the zone specif. |
||
| 4091 | */ |
||
| 4092 | public function getZoneSpecif(): ?string{ |
||
| 4095 | |||
| 4096 | /** |
||
| 4097 | * Set the at taux bul1. |
||
| 4098 | * |
||
| 4099 | * @param float|null $atTauxBul1 The at taux bul1. |
||
| 4100 | * @return Etablissements Returns this Etablissements. |
||
| 4101 | */ |
||
| 4102 | public function setAtTauxBul1(?float $atTauxBul1): Etablissements { |
||
| 4106 | |||
| 4107 | /** |
||
| 4108 | * Set the at taux bul2. |
||
| 4109 | * |
||
| 4110 | * @param float|null $atTauxBul2 The at taux bul2. |
||
| 4111 | * @return Etablissements Returns this Etablissements. |
||
| 4112 | */ |
||
| 4113 | public function setAtTauxBul2(?float $atTauxBul2): Etablissements { |
||
| 4117 | |||
| 4118 | /** |
||
| 4119 | * Set the at taux bul3. |
||
| 4120 | * |
||
| 4121 | * @param float|null $atTauxBul3 The at taux bul3. |
||
| 4122 | * @return Etablissements Returns this Etablissements. |
||
| 4123 | */ |
||
| 4124 | public function setAtTauxBul3(?float $atTauxBul3): Etablissements { |
||
| 4128 | |||
| 4129 | /** |
||
| 4130 | * Set the at taux bul4. |
||
| 4131 | * |
||
| 4132 | * @param float|null $atTauxBul4 The at taux bul4. |
||
| 4133 | * @return Etablissements Returns this Etablissements. |
||
| 4134 | */ |
||
| 4135 | public function setAtTauxBul4(?float $atTauxBul4): Etablissements { |
||
| 4139 | |||
| 4140 | /** |
||
| 4141 | * Set the at taux bul5. |
||
| 4142 | * |
||
| 4143 | * @param float|null $atTauxBul5 The at taux bul5. |
||
| 4144 | * @return Etablissements Returns this Etablissements. |
||
| 4145 | */ |
||
| 4146 | public function setAtTauxBul5(?float $atTauxBul5): Etablissements { |
||
| 4150 | |||
| 4151 | /** |
||
| 4152 | * Set the abattement max. |
||
| 4153 | * |
||
| 4154 | * @param float|null $abattementMax The abattement max. |
||
| 4155 | * @return Etablissements Returns this Etablissements. |
||
| 4156 | */ |
||
| 4157 | public function setAbattementMax(?float $abattementMax): Etablissements { |
||
| 4161 | |||
| 4162 | /** |
||
| 4163 | * Set the alleg particulier. |
||
| 4164 | * |
||
| 4165 | * @param string|null $allegParticulier The alleg particulier. |
||
| 4166 | * @return Etablissements Returns this Etablissements. |
||
| 4167 | */ |
||
| 4168 | public function setAllegParticulier(?string $allegParticulier): Etablissements { |
||
| 4172 | |||
| 4173 | /** |
||
| 4174 | * Set the at bureau1. |
||
| 4175 | * |
||
| 4176 | * @param string|null $atBureau1 The at bureau1. |
||
| 4177 | * @return Etablissements Returns this Etablissements. |
||
| 4178 | */ |
||
| 4179 | public function setAtBureau1(?string $atBureau1): Etablissements { |
||
| 4183 | |||
| 4184 | /** |
||
| 4185 | * Set the at bureau2. |
||
| 4186 | * |
||
| 4187 | * @param string|null $atBureau2 The at bureau2. |
||
| 4188 | * @return Etablissements Returns this Etablissements. |
||
| 4189 | */ |
||
| 4190 | public function setAtBureau2(?string $atBureau2): Etablissements { |
||
| 4194 | |||
| 4195 | /** |
||
| 4196 | * Set the at bureau3. |
||
| 4197 | * |
||
| 4198 | * @param string|null $atBureau3 The at bureau3. |
||
| 4199 | * @return Etablissements Returns this Etablissements. |
||
| 4200 | */ |
||
| 4201 | public function setAtBureau3(?string $atBureau3): Etablissements { |
||
| 4205 | |||
| 4206 | /** |
||
| 4207 | * Set the at bureau4. |
||
| 4208 | * |
||
| 4209 | * @param string|null $atBureau4 The at bureau4. |
||
| 4210 | * @return Etablissements Returns this Etablissements. |
||
| 4211 | */ |
||
| 4212 | public function setAtBureau4(?string $atBureau4): Etablissements { |
||
| 4216 | |||
| 4217 | /** |
||
| 4218 | * Set the at bureau5. |
||
| 4219 | * |
||
| 4220 | * @param string|null $atBureau5 The at bureau5. |
||
| 4221 | * @return Etablissements Returns this Etablissements. |
||
| 4222 | */ |
||
| 4223 | public function setAtBureau5(?string $atBureau5): Etablissements { |
||
| 4227 | |||
| 4228 | /** |
||
| 4229 | * Set the at etab1. |
||
| 4230 | * |
||
| 4231 | * @param string|null $atEtab1 The at etab1. |
||
| 4232 | * @return Etablissements Returns this Etablissements. |
||
| 4233 | */ |
||
| 4234 | public function setAtEtab1(?string $atEtab1): Etablissements { |
||
| 4238 | |||
| 4239 | /** |
||
| 4240 | * Set the at etab2. |
||
| 4241 | * |
||
| 4242 | * @param string|null $atEtab2 The at etab2. |
||
| 4243 | * @return Etablissements Returns this Etablissements. |
||
| 4244 | */ |
||
| 4245 | public function setAtEtab2(?string $atEtab2): Etablissements { |
||
| 4249 | |||
| 4250 | /** |
||
| 4251 | * Set the at etab3. |
||
| 4252 | * |
||
| 4253 | * @param string|null $atEtab3 The at etab3. |
||
| 4254 | * @return Etablissements Returns this Etablissements. |
||
| 4255 | */ |
||
| 4256 | public function setAtEtab3(?string $atEtab3): Etablissements { |
||
| 4260 | |||
| 4261 | /** |
||
| 4262 | * Set the at etab4. |
||
| 4263 | * |
||
| 4264 | * @param string|null $atEtab4 The at etab4. |
||
| 4265 | * @return Etablissements Returns this Etablissements. |
||
| 4266 | */ |
||
| 4267 | public function setAtEtab4(?string $atEtab4): Etablissements { |
||
| 4271 | |||
| 4272 | /** |
||
| 4273 | * Set the at etab5. |
||
| 4274 | * |
||
| 4275 | * @param string|null $atEtab5 The at etab5. |
||
| 4276 | * @return Etablissements Returns this Etablissements. |
||
| 4277 | */ |
||
| 4278 | public function setAtEtab5(?string $atEtab5): Etablissements { |
||
| 4282 | |||
| 4283 | /** |
||
| 4284 | * Set the at risque1. |
||
| 4285 | * |
||
| 4286 | * @param string|null $atRisque1 The at risque1. |
||
| 4287 | * @return Etablissements Returns this Etablissements. |
||
| 4288 | */ |
||
| 4289 | public function setAtRisque1(?string $atRisque1): Etablissements { |
||
| 4293 | |||
| 4294 | /** |
||
| 4295 | * Set the at risque2. |
||
| 4296 | * |
||
| 4297 | * @param string|null $atRisque2 The at risque2. |
||
| 4298 | * @return Etablissements Returns this Etablissements. |
||
| 4299 | */ |
||
| 4300 | public function setAtRisque2(?string $atRisque2): Etablissements { |
||
| 4304 | |||
| 4305 | /** |
||
| 4306 | * Set the at risque3. |
||
| 4307 | * |
||
| 4308 | * @param string|null $atRisque3 The at risque3. |
||
| 4309 | * @return Etablissements Returns this Etablissements. |
||
| 4310 | */ |
||
| 4311 | public function setAtRisque3(?string $atRisque3): Etablissements { |
||
| 4315 | |||
| 4316 | /** |
||
| 4317 | * Set the at risque4. |
||
| 4318 | * |
||
| 4319 | * @param string|null $atRisque4 The at risque4. |
||
| 4320 | * @return Etablissements Returns this Etablissements. |
||
| 4321 | */ |
||
| 4322 | public function setAtRisque4(?string $atRisque4): Etablissements { |
||
| 4326 | |||
| 4327 | /** |
||
| 4328 | * Set the at risque5. |
||
| 4329 | * |
||
| 4330 | * @param string|null $atRisque5 The at risque5. |
||
| 4331 | * @return Etablissements Returns this Etablissements. |
||
| 4332 | */ |
||
| 4333 | public function setAtRisque5(?string $atRisque5): Etablissements { |
||
| 4337 | |||
| 4338 | /** |
||
| 4339 | * Set the at taux1. |
||
| 4340 | * |
||
| 4341 | * @param float|null $atTaux1 The at taux1. |
||
| 4342 | * @return Etablissements Returns this Etablissements. |
||
| 4343 | */ |
||
| 4344 | public function setAtTaux1(?float $atTaux1): Etablissements { |
||
| 4348 | |||
| 4349 | /** |
||
| 4350 | * Set the at taux2. |
||
| 4351 | * |
||
| 4352 | * @param float|null $atTaux2 The at taux2. |
||
| 4353 | * @return Etablissements Returns this Etablissements. |
||
| 4354 | */ |
||
| 4355 | public function setAtTaux2(?float $atTaux2): Etablissements { |
||
| 4359 | |||
| 4360 | /** |
||
| 4361 | * Set the at taux3. |
||
| 4362 | * |
||
| 4363 | * @param float|null $atTaux3 The at taux3. |
||
| 4364 | * @return Etablissements Returns this Etablissements. |
||
| 4365 | */ |
||
| 4366 | public function setAtTaux3(?float $atTaux3): Etablissements { |
||
| 4370 | |||
| 4371 | /** |
||
| 4372 | * Set the at taux4. |
||
| 4373 | * |
||
| 4374 | * @param float|null $atTaux4 The at taux4. |
||
| 4375 | * @return Etablissements Returns this Etablissements. |
||
| 4376 | */ |
||
| 4377 | public function setAtTaux4(?float $atTaux4): Etablissements { |
||
| 4381 | |||
| 4382 | /** |
||
| 4383 | * Set the at taux5. |
||
| 4384 | * |
||
| 4385 | * @param float|null $atTaux5 The at taux5. |
||
| 4386 | * @return Etablissements Returns this Etablissements. |
||
| 4387 | */ |
||
| 4388 | public function setAtTaux5(?float $atTaux5): Etablissements { |
||
| 4392 | |||
| 4393 | /** |
||
| 4394 | * Set the aubry1 modifie. |
||
| 4395 | * |
||
| 4396 | * @param bool|null $aubry1Modifie The aubry1 modifie. |
||
| 4397 | * @return Etablissements Returns this Etablissements. |
||
| 4398 | */ |
||
| 4399 | public function setAubry1Modifie(?bool $aubry1Modifie): Etablissements { |
||
| 4403 | |||
| 4404 | /** |
||
| 4405 | * Set the autre alleg. |
||
| 4406 | * |
||
| 4407 | * @param string|null $autreAlleg The autre alleg. |
||
| 4408 | * @return Etablissements Returns this Etablissements. |
||
| 4409 | */ |
||
| 4410 | public function setAutreAlleg(?string $autreAlleg): Etablissements { |
||
| 4414 | |||
| 4415 | /** |
||
| 4416 | * Set the bic1. |
||
| 4417 | * |
||
| 4418 | * @param string|null $bic1 The bic1. |
||
| 4419 | * @return Etablissements Returns this Etablissements. |
||
| 4420 | */ |
||
| 4421 | public function setBic1(?string $bic1): Etablissements { |
||
| 4425 | |||
| 4426 | /** |
||
| 4427 | * Set the btq. |
||
| 4428 | * |
||
| 4429 | * @param string|null $btq The btq. |
||
| 4430 | * @return Etablissements Returns this Etablissements. |
||
| 4431 | */ |
||
| 4432 | public function setBtq(?string $btq): Etablissements { |
||
| 4436 | |||
| 4437 | /** |
||
| 4438 | * Set the banque1. |
||
| 4439 | * |
||
| 4440 | * @param string|null $banque1 The banque1. |
||
| 4441 | * @return Etablissements Returns this Etablissements. |
||
| 4442 | */ |
||
| 4443 | public function setBanque1(?string $banque1): Etablissements { |
||
| 4447 | |||
| 4448 | /** |
||
| 4449 | * Set the banque2. |
||
| 4450 | * |
||
| 4451 | * @param string|null $banque2 The banque2. |
||
| 4452 | * @return Etablissements Returns this Etablissements. |
||
| 4453 | */ |
||
| 4454 | public function setBanque2(?string $banque2): Etablissements { |
||
| 4458 | |||
| 4459 | /** |
||
| 4460 | * Set the banque3. |
||
| 4461 | * |
||
| 4462 | * @param string|null $banque3 The banque3. |
||
| 4463 | * @return Etablissements Returns this Etablissements. |
||
| 4464 | */ |
||
| 4465 | public function setBanque3(?string $banque3): Etablissements { |
||
| 4469 | |||
| 4470 | /** |
||
| 4471 | * Set the bonus cospar. |
||
| 4472 | * |
||
| 4473 | * @param bool|null $bonusCospar The bonus cospar. |
||
| 4474 | * @return Etablissements Returns this Etablissements. |
||
| 4475 | */ |
||
| 4476 | public function setBonusCospar(?bool $bonusCospar): Etablissements { |
||
| 4480 | |||
| 4481 | /** |
||
| 4482 | * Set the bureau distributeur. |
||
| 4483 | * |
||
| 4484 | * @param string|null $bureauDistributeur The bureau distributeur. |
||
| 4485 | * @return Etablissements Returns this Etablissements. |
||
| 4486 | */ |
||
| 4487 | public function setBureauDistributeur(?string $bureauDistributeur): Etablissements { |
||
| 4491 | |||
| 4492 | /** |
||
| 4493 | * Set the c colect11. |
||
| 4494 | * |
||
| 4495 | * @param string|null $cColect11 The c colect11. |
||
| 4496 | * @return Etablissements Returns this Etablissements. |
||
| 4497 | */ |
||
| 4498 | public function setCColect11(?string $cColect11): Etablissements { |
||
| 4502 | |||
| 4503 | /** |
||
| 4504 | * Set the c colect12. |
||
| 4505 | * |
||
| 4506 | * @param string|null $cColect12 The c colect12. |
||
| 4507 | * @return Etablissements Returns this Etablissements. |
||
| 4508 | */ |
||
| 4509 | public function setCColect12(?string $cColect12): Etablissements { |
||
| 4513 | |||
| 4514 | /** |
||
| 4515 | * Set the c colect21. |
||
| 4516 | * |
||
| 4517 | * @param string|null $cColect21 The c colect21. |
||
| 4518 | * @return Etablissements Returns this Etablissements. |
||
| 4519 | */ |
||
| 4520 | public function setCColect21(?string $cColect21): Etablissements { |
||
| 4524 | |||
| 4525 | /** |
||
| 4526 | * Set the c colect22. |
||
| 4527 | * |
||
| 4528 | * @param string|null $cColect22 The c colect22. |
||
| 4529 | * @return Etablissements Returns this Etablissements. |
||
| 4530 | */ |
||
| 4531 | public function setCColect22(?string $cColect22): Etablissements { |
||
| 4535 | |||
| 4536 | /** |
||
| 4537 | * Set the c colect31. |
||
| 4538 | * |
||
| 4539 | * @param string|null $cColect31 The c colect31. |
||
| 4540 | * @return Etablissements Returns this Etablissements. |
||
| 4541 | */ |
||
| 4542 | public function setCColect31(?string $cColect31): Etablissements { |
||
| 4546 | |||
| 4547 | /** |
||
| 4548 | * Set the c colect32. |
||
| 4549 | * |
||
| 4550 | * @param string|null $cColect32 The c colect32. |
||
| 4551 | * @return Etablissements Returns this Etablissements. |
||
| 4552 | */ |
||
| 4553 | public function setCColect32(?string $cColect32): Etablissements { |
||
| 4557 | |||
| 4558 | /** |
||
| 4559 | * Set the c colect41. |
||
| 4560 | * |
||
| 4561 | * @param string|null $cColect41 The c colect41. |
||
| 4562 | * @return Etablissements Returns this Etablissements. |
||
| 4563 | */ |
||
| 4564 | public function setCColect41(?string $cColect41): Etablissements { |
||
| 4568 | |||
| 4569 | /** |
||
| 4570 | * Set the c colect42. |
||
| 4571 | * |
||
| 4572 | * @param string|null $cColect42 The c colect42. |
||
| 4573 | * @return Etablissements Returns this Etablissements. |
||
| 4574 | */ |
||
| 4575 | public function setCColect42(?string $cColect42): Etablissements { |
||
| 4579 | |||
| 4580 | /** |
||
| 4581 | * Set the c colect51. |
||
| 4582 | * |
||
| 4583 | * @param string|null $cColect51 The c colect51. |
||
| 4584 | * @return Etablissements Returns this Etablissements. |
||
| 4585 | */ |
||
| 4586 | public function setCColect51(?string $cColect51): Etablissements { |
||
| 4590 | |||
| 4591 | /** |
||
| 4592 | * Set the c colect52. |
||
| 4593 | * |
||
| 4594 | * @param string|null $cColect52 The c colect52. |
||
| 4595 | * @return Etablissements Returns this Etablissements. |
||
| 4596 | */ |
||
| 4597 | public function setCColect52(?string $cColect52): Etablissements { |
||
| 4601 | |||
| 4602 | /** |
||
| 4603 | * Set the c colect61. |
||
| 4604 | * |
||
| 4605 | * @param string|null $cColect61 The c colect61. |
||
| 4606 | * @return Etablissements Returns this Etablissements. |
||
| 4607 | */ |
||
| 4608 | public function setCColect61(?string $cColect61): Etablissements { |
||
| 4612 | |||
| 4613 | /** |
||
| 4614 | * Set the c colect62. |
||
| 4615 | * |
||
| 4616 | * @param string|null $cColect62 The c colect62. |
||
| 4617 | * @return Etablissements Returns this Etablissements. |
||
| 4618 | */ |
||
| 4619 | public function setCColect62(?string $cColect62): Etablissements { |
||
| 4623 | |||
| 4624 | /** |
||
| 4625 | * Set the caisse cp. |
||
| 4626 | * |
||
| 4627 | * @param bool|null $caisseCp The caisse cp. |
||
| 4628 | * @return Etablissements Returns this Etablissements. |
||
| 4629 | */ |
||
| 4630 | public function setCaisseCp(?bool $caisseCp): Etablissements { |
||
| 4634 | |||
| 4635 | /** |
||
| 4636 | * Set the centre analytique. |
||
| 4637 | * |
||
| 4638 | * @param string|null $centreAnalytique The centre analytique. |
||
| 4639 | * @return Etablissements Returns this Etablissements. |
||
| 4640 | */ |
||
| 4641 | public function setCentreAnalytique(?string $centreAnalytique): Etablissements { |
||
| 4645 | |||
| 4646 | /** |
||
| 4647 | * Set the civilite. |
||
| 4648 | * |
||
| 4649 | * @param string|null $civilite The civilite. |
||
| 4650 | * @return Etablissements Returns this Etablissements. |
||
| 4651 | */ |
||
| 4652 | public function setCivilite(?string $civilite): Etablissements { |
||
| 4656 | |||
| 4657 | /** |
||
| 4658 | * Set the code adherent. |
||
| 4659 | * |
||
| 4660 | * @param string|null $codeAdherent The code adherent. |
||
| 4661 | * @return Etablissements Returns this Etablissements. |
||
| 4662 | */ |
||
| 4663 | public function setCodeAdherent(?string $codeAdherent): Etablissements { |
||
| 4667 | |||
| 4668 | /** |
||
| 4669 | * Set the code c colect1. |
||
| 4670 | * |
||
| 4671 | * @param string|null $codeCColect1 The code c colect1. |
||
| 4672 | * @return Etablissements Returns this Etablissements. |
||
| 4673 | */ |
||
| 4674 | public function setCodeCColect1(?string $codeCColect1): Etablissements { |
||
| 4678 | |||
| 4679 | /** |
||
| 4680 | * Set the code c colect2. |
||
| 4681 | * |
||
| 4682 | * @param string|null $codeCColect2 The code c colect2. |
||
| 4683 | * @return Etablissements Returns this Etablissements. |
||
| 4684 | */ |
||
| 4685 | public function setCodeCColect2(?string $codeCColect2): Etablissements { |
||
| 4689 | |||
| 4690 | /** |
||
| 4691 | * Set the code c colect3. |
||
| 4692 | * |
||
| 4693 | * @param string|null $codeCColect3 The code c colect3. |
||
| 4694 | * @return Etablissements Returns this Etablissements. |
||
| 4695 | */ |
||
| 4696 | public function setCodeCColect3(?string $codeCColect3): Etablissements { |
||
| 4700 | |||
| 4701 | /** |
||
| 4702 | * Set the code c colect4. |
||
| 4703 | * |
||
| 4704 | * @param string|null $codeCColect4 The code c colect4. |
||
| 4705 | * @return Etablissements Returns this Etablissements. |
||
| 4706 | */ |
||
| 4707 | public function setCodeCColect4(?string $codeCColect4): Etablissements { |
||
| 4711 | |||
| 4712 | /** |
||
| 4713 | * Set the code c colect5. |
||
| 4714 | * |
||
| 4715 | * @param string|null $codeCColect5 The code c colect5. |
||
| 4716 | * @return Etablissements Returns this Etablissements. |
||
| 4717 | */ |
||
| 4718 | public function setCodeCColect5(?string $codeCColect5): Etablissements { |
||
| 4722 | |||
| 4723 | /** |
||
| 4724 | * Set the code c colect6. |
||
| 4725 | * |
||
| 4726 | * @param string|null $codeCColect6 The code c colect6. |
||
| 4727 | * @return Etablissements Returns this Etablissements. |
||
| 4728 | */ |
||
| 4729 | public function setCodeCColect6(?string $codeCColect6): Etablissements { |
||
| 4733 | |||
| 4734 | /** |
||
| 4735 | * Set the code centre impot. |
||
| 4736 | * |
||
| 4737 | * @param string|null $codeCentreImpot The code centre impot. |
||
| 4738 | * @return Etablissements Returns this Etablissements. |
||
| 4739 | */ |
||
| 4740 | public function setCodeCentreImpot(?string $codeCentreImpot): Etablissements { |
||
| 4744 | |||
| 4745 | /** |
||
| 4746 | * Set the code ducs specif. |
||
| 4747 | * |
||
| 4748 | * @param string|null $codeDucsSpecif The code ducs specif. |
||
| 4749 | * @return Etablissements Returns this Etablissements. |
||
| 4750 | */ |
||
| 4751 | public function setCodeDucsSpecif(?string $codeDucsSpecif): Etablissements { |
||
| 4755 | |||
| 4756 | /** |
||
| 4757 | * Set the code etablissement. |
||
| 4758 | * |
||
| 4759 | * @param int|null $codeEtablissement The code etablissement. |
||
| 4760 | * @return Etablissements Returns this Etablissements. |
||
| 4761 | */ |
||
| 4762 | public function setCodeEtablissement(?int $codeEtablissement): Etablissements { |
||
| 4766 | |||
| 4767 | /** |
||
| 4768 | * Set the code insee. |
||
| 4769 | * |
||
| 4770 | * @param string|null $codeInsee The code insee. |
||
| 4771 | * @return Etablissements Returns this Etablissements. |
||
| 4772 | */ |
||
| 4773 | public function setCodeInsee(?string $codeInsee): Etablissements { |
||
| 4777 | |||
| 4778 | /** |
||
| 4779 | * Set the code journal banque. |
||
| 4780 | * |
||
| 4781 | * @param string|null $codeJournalBanque The code journal banque. |
||
| 4782 | * @return Etablissements Returns this Etablissements. |
||
| 4783 | */ |
||
| 4784 | public function setCodeJournalBanque(?string $codeJournalBanque): Etablissements { |
||
| 4788 | |||
| 4789 | /** |
||
| 4790 | * Set the code journal paie. |
||
| 4791 | * |
||
| 4792 | * @param string|null $codeJournalPaie The code journal paie. |
||
| 4793 | * @return Etablissements Returns this Etablissements. |
||
| 4794 | */ |
||
| 4795 | public function setCodeJournalPaie(?string $codeJournalPaie): Etablissements { |
||
| 4799 | |||
| 4800 | /** |
||
| 4801 | * Set the code metier retraite. |
||
| 4802 | * |
||
| 4803 | * @param string|null $codeMetierRetraite The code metier retraite. |
||
| 4804 | * @return Etablissements Returns this Etablissements. |
||
| 4805 | */ |
||
| 4806 | public function setCodeMetierRetraite(?string $codeMetierRetraite): Etablissements { |
||
| 4810 | |||
| 4811 | /** |
||
| 4812 | * Set the code naf2008. |
||
| 4813 | * |
||
| 4814 | * @param string|null $codeNaf2008 The code naf2008. |
||
| 4815 | * @return Etablissements Returns this Etablissements. |
||
| 4816 | */ |
||
| 4817 | public function setCodeNaf2008(?string $codeNaf2008): Etablissements { |
||
| 4821 | |||
| 4822 | /** |
||
| 4823 | * Set the code naf22008. |
||
| 4824 | * |
||
| 4825 | * @param string|null $codeNaf22008 The code naf22008. |
||
| 4826 | * @return Etablissements Returns this Etablissements. |
||
| 4827 | */ |
||
| 4828 | public function setCodeNaf22008(?string $codeNaf22008): Etablissements { |
||
| 4832 | |||
| 4833 | /** |
||
| 4834 | * Set the code naf32008. |
||
| 4835 | * |
||
| 4836 | * @param string|null $codeNaf32008 The code naf32008. |
||
| 4837 | * @return Etablissements Returns this Etablissements. |
||
| 4838 | */ |
||
| 4839 | public function setCodeNaf32008(?string $codeNaf32008): Etablissements { |
||
| 4843 | |||
| 4844 | /** |
||
| 4845 | * Set the code naf. |
||
| 4846 | * |
||
| 4847 | * @param string|null $codeNaf The code naf. |
||
| 4848 | * @return Etablissements Returns this Etablissements. |
||
| 4849 | */ |
||
| 4850 | public function setCodeNaf(?string $codeNaf): Etablissements { |
||
| 4854 | |||
| 4855 | /** |
||
| 4856 | * Set the code naf2. |
||
| 4857 | * |
||
| 4858 | * @param string|null $codeNaf2 The code naf2. |
||
| 4859 | * @return Etablissements Returns this Etablissements. |
||
| 4860 | */ |
||
| 4861 | public function setCodeNaf2(?string $codeNaf2): Etablissements { |
||
| 4865 | |||
| 4866 | /** |
||
| 4867 | * Set the code naf3. |
||
| 4868 | * |
||
| 4869 | * @param string|null $codeNaf3 The code naf3. |
||
| 4870 | * @return Etablissements Returns this Etablissements. |
||
| 4871 | */ |
||
| 4872 | public function setCodeNaf3(?string $codeNaf3): Etablissements { |
||
| 4876 | |||
| 4877 | /** |
||
| 4878 | * Set the code officiel commune. |
||
| 4879 | * |
||
| 4880 | * @param string|null $codeOfficielCommune The code officiel commune. |
||
| 4881 | * @return Etablissements Returns this Etablissements. |
||
| 4882 | */ |
||
| 4883 | public function setCodeOfficielCommune(?string $codeOfficielCommune): Etablissements { |
||
| 4887 | |||
| 4888 | /** |
||
| 4889 | * Set the code pays. |
||
| 4890 | * |
||
| 4891 | * @param string|null $codePays The code pays. |
||
| 4892 | * @return Etablissements Returns this Etablissements. |
||
| 4893 | */ |
||
| 4894 | public function setCodePays(?string $codePays): Etablissements { |
||
| 4898 | |||
| 4899 | /** |
||
| 4900 | * Set the code pays residence. |
||
| 4901 | * |
||
| 4902 | * @param string|null $codePaysResidence The code pays residence. |
||
| 4903 | * @return Etablissements Returns this Etablissements. |
||
| 4904 | */ |
||
| 4905 | public function setCodePaysResidence(?string $codePaysResidence): Etablissements { |
||
| 4909 | |||
| 4910 | /** |
||
| 4911 | * Set the code postal. |
||
| 4912 | * |
||
| 4913 | * @param string|null $codePostal The code postal. |
||
| 4914 | * @return Etablissements Returns this Etablissements. |
||
| 4915 | */ |
||
| 4916 | public function setCodePostal(?string $codePostal): Etablissements { |
||
| 4920 | |||
| 4921 | /** |
||
| 4922 | * Set the coeff aubry2. |
||
| 4923 | * |
||
| 4924 | * @param float|null $coeffAubry2 The coeff aubry2. |
||
| 4925 | * @return Etablissements Returns this Etablissements. |
||
| 4926 | */ |
||
| 4927 | public function setCoeffAubry2(?float $coeffAubry2): Etablissements { |
||
| 4931 | |||
| 4932 | /** |
||
| 4933 | * Set the complement. |
||
| 4934 | * |
||
| 4935 | * @param string|null $complement The complement. |
||
| 4936 | * @return Etablissements Returns this Etablissements. |
||
| 4937 | */ |
||
| 4938 | public function setComplement(?string $complement): Etablissements { |
||
| 4942 | |||
| 4943 | /** |
||
| 4944 | * Set the compte acompte employe. |
||
| 4945 | * |
||
| 4946 | * @param bool|null $compteAcompteEmploye The compte acompte employe. |
||
| 4947 | * @return Etablissements Returns this Etablissements. |
||
| 4948 | */ |
||
| 4949 | public function setCompteAcompteEmploye(?bool $compteAcompteEmploye): Etablissements { |
||
| 4953 | |||
| 4954 | /** |
||
| 4955 | * Set the compte charge1. |
||
| 4956 | * |
||
| 4957 | * @param string|null $compteCharge1 The compte charge1. |
||
| 4958 | * @return Etablissements Returns this Etablissements. |
||
| 4959 | */ |
||
| 4960 | public function setCompteCharge1(?string $compteCharge1): Etablissements { |
||
| 4964 | |||
| 4965 | /** |
||
| 4966 | * Set the compte charge10. |
||
| 4967 | * |
||
| 4968 | * @param string|null $compteCharge10 The compte charge10. |
||
| 4969 | * @return Etablissements Returns this Etablissements. |
||
| 4970 | */ |
||
| 4971 | public function setCompteCharge10(?string $compteCharge10): Etablissements { |
||
| 4975 | |||
| 4976 | /** |
||
| 4977 | * Set the compte charge11. |
||
| 4978 | * |
||
| 4979 | * @param string|null $compteCharge11 The compte charge11. |
||
| 4980 | * @return Etablissements Returns this Etablissements. |
||
| 4981 | */ |
||
| 4982 | public function setCompteCharge11(?string $compteCharge11): Etablissements { |
||
| 4986 | |||
| 4987 | /** |
||
| 4988 | * Set the compte charge2. |
||
| 4989 | * |
||
| 4990 | * @param string|null $compteCharge2 The compte charge2. |
||
| 4991 | * @return Etablissements Returns this Etablissements. |
||
| 4992 | */ |
||
| 4993 | public function setCompteCharge2(?string $compteCharge2): Etablissements { |
||
| 4997 | |||
| 4998 | /** |
||
| 4999 | * Set the compte charge3. |
||
| 5000 | * |
||
| 5001 | * @param string|null $compteCharge3 The compte charge3. |
||
| 5002 | * @return Etablissements Returns this Etablissements. |
||
| 5003 | */ |
||
| 5004 | public function setCompteCharge3(?string $compteCharge3): Etablissements { |
||
| 5008 | |||
| 5009 | /** |
||
| 5010 | * Set the compte charge4. |
||
| 5011 | * |
||
| 5012 | * @param string|null $compteCharge4 The compte charge4. |
||
| 5013 | * @return Etablissements Returns this Etablissements. |
||
| 5014 | */ |
||
| 5015 | public function setCompteCharge4(?string $compteCharge4): Etablissements { |
||
| 5019 | |||
| 5020 | /** |
||
| 5021 | * Set the compte charge5. |
||
| 5022 | * |
||
| 5023 | * @param string|null $compteCharge5 The compte charge5. |
||
| 5024 | * @return Etablissements Returns this Etablissements. |
||
| 5025 | */ |
||
| 5026 | public function setCompteCharge5(?string $compteCharge5): Etablissements { |
||
| 5030 | |||
| 5031 | /** |
||
| 5032 | * Set the compte charge6. |
||
| 5033 | * |
||
| 5034 | * @param string|null $compteCharge6 The compte charge6. |
||
| 5035 | * @return Etablissements Returns this Etablissements. |
||
| 5036 | */ |
||
| 5037 | public function setCompteCharge6(?string $compteCharge6): Etablissements { |
||
| 5041 | |||
| 5042 | /** |
||
| 5043 | * Set the compte charge7. |
||
| 5044 | * |
||
| 5045 | * @param string|null $compteCharge7 The compte charge7. |
||
| 5046 | * @return Etablissements Returns this Etablissements. |
||
| 5047 | */ |
||
| 5048 | public function setCompteCharge7(?string $compteCharge7): Etablissements { |
||
| 5052 | |||
| 5053 | /** |
||
| 5054 | * Set the compte charge8. |
||
| 5055 | * |
||
| 5056 | * @param string|null $compteCharge8 The compte charge8. |
||
| 5057 | * @return Etablissements Returns this Etablissements. |
||
| 5058 | */ |
||
| 5059 | public function setCompteCharge8(?string $compteCharge8): Etablissements { |
||
| 5063 | |||
| 5064 | /** |
||
| 5065 | * Set the compte charge9. |
||
| 5066 | * |
||
| 5067 | * @param string|null $compteCharge9 The compte charge9. |
||
| 5068 | * @return Etablissements Returns this Etablissements. |
||
| 5069 | */ |
||
| 5070 | public function setCompteCharge9(?string $compteCharge9): Etablissements { |
||
| 5074 | |||
| 5075 | /** |
||
| 5076 | * Set the compte charge aen. |
||
| 5077 | * |
||
| 5078 | * @param string|null $compteChargeAen The compte charge aen. |
||
| 5079 | * @return Etablissements Returns this Etablissements. |
||
| 5080 | */ |
||
| 5081 | public function setCompteChargeAen(?string $compteChargeAen): Etablissements { |
||
| 5085 | |||
| 5086 | /** |
||
| 5087 | * Set the compte charge fc. |
||
| 5088 | * |
||
| 5089 | * @param string|null $compteChargeFc The compte charge fc. |
||
| 5090 | * @return Etablissements Returns this Etablissements. |
||
| 5091 | */ |
||
| 5092 | public function setCompteChargeFc(?string $compteChargeFc): Etablissements { |
||
| 5096 | |||
| 5097 | /** |
||
| 5098 | * Set the compte charge ijss. |
||
| 5099 | * |
||
| 5100 | * @param string|null $compteChargeIjss The compte charge ijss. |
||
| 5101 | * @return Etablissements Returns this Etablissements. |
||
| 5102 | */ |
||
| 5103 | public function setCompteChargeIjss(?string $compteChargeIjss): Etablissements { |
||
| 5107 | |||
| 5108 | /** |
||
| 5109 | * Set the compte charge indem cp. |
||
| 5110 | * |
||
| 5111 | * @param string|null $compteChargeIndemCp The compte charge indem cp. |
||
| 5112 | * @return Etablissements Returns this Etablissements. |
||
| 5113 | */ |
||
| 5114 | public function setCompteChargeIndemCp(?string $compteChargeIndemCp): Etablissements { |
||
| 5118 | |||
| 5119 | /** |
||
| 5120 | * Set the compte saisie arret. |
||
| 5121 | * |
||
| 5122 | * @param string|null $compteSaisieArret The compte saisie arret. |
||
| 5123 | * @return Etablissements Returns this Etablissements. |
||
| 5124 | */ |
||
| 5125 | public function setCompteSaisieArret(?string $compteSaisieArret): Etablissements { |
||
| 5129 | |||
| 5130 | /** |
||
| 5131 | * Set the compte tiers1. |
||
| 5132 | * |
||
| 5133 | * @param string|null $compteTiers1 The compte tiers1. |
||
| 5134 | * @return Etablissements Returns this Etablissements. |
||
| 5135 | */ |
||
| 5136 | public function setCompteTiers1(?string $compteTiers1): Etablissements { |
||
| 5140 | |||
| 5141 | /** |
||
| 5142 | * Set the compte tiers2. |
||
| 5143 | * |
||
| 5144 | * @param string|null $compteTiers2 The compte tiers2. |
||
| 5145 | * @return Etablissements Returns this Etablissements. |
||
| 5146 | */ |
||
| 5147 | public function setCompteTiers2(?string $compteTiers2): Etablissements { |
||
| 5151 | |||
| 5152 | /** |
||
| 5153 | * Set the dadsu code c colect1. |
||
| 5154 | * |
||
| 5155 | * @param string|null $dadsuCodeCColect1 The dadsu code c colect1. |
||
| 5156 | * @return Etablissements Returns this Etablissements. |
||
| 5157 | */ |
||
| 5158 | public function setDadsuCodeCColect1(?string $dadsuCodeCColect1): Etablissements { |
||
| 5162 | |||
| 5163 | /** |
||
| 5164 | * Set the dadsu code c colect2. |
||
| 5165 | * |
||
| 5166 | * @param string|null $dadsuCodeCColect2 The dadsu code c colect2. |
||
| 5167 | * @return Etablissements Returns this Etablissements. |
||
| 5168 | */ |
||
| 5169 | public function setDadsuCodeCColect2(?string $dadsuCodeCColect2): Etablissements { |
||
| 5173 | |||
| 5174 | /** |
||
| 5175 | * Set the dadsu code c colect3. |
||
| 5176 | * |
||
| 5177 | * @param string|null $dadsuCodeCColect3 The dadsu code c colect3. |
||
| 5178 | * @return Etablissements Returns this Etablissements. |
||
| 5179 | */ |
||
| 5180 | public function setDadsuCodeCColect3(?string $dadsuCodeCColect3): Etablissements { |
||
| 5184 | |||
| 5185 | /** |
||
| 5186 | * Set the dadsu code c colect4. |
||
| 5187 | * |
||
| 5188 | * @param string|null $dadsuCodeCColect4 The dadsu code c colect4. |
||
| 5189 | * @return Etablissements Returns this Etablissements. |
||
| 5190 | */ |
||
| 5191 | public function setDadsuCodeCColect4(?string $dadsuCodeCColect4): Etablissements { |
||
| 5195 | |||
| 5196 | /** |
||
| 5197 | * Set the dadsu code c colect5. |
||
| 5198 | * |
||
| 5199 | * @param string|null $dadsuCodeCColect5 The dadsu code c colect5. |
||
| 5200 | * @return Etablissements Returns this Etablissements. |
||
| 5201 | */ |
||
| 5202 | public function setDadsuCodeCColect5(?string $dadsuCodeCColect5): Etablissements { |
||
| 5206 | |||
| 5207 | /** |
||
| 5208 | * Set the dadsu code c colect6. |
||
| 5209 | * |
||
| 5210 | * @param string|null $dadsuCodeCColect6 The dadsu code c colect6. |
||
| 5211 | * @return Etablissements Returns this Etablissements. |
||
| 5212 | */ |
||
| 5213 | public function setDadsuCodeCColect6(?string $dadsuCodeCColect6): Etablissements { |
||
| 5217 | |||
| 5218 | /** |
||
| 5219 | * Set the date allegement. |
||
| 5220 | * |
||
| 5221 | * @param DateTime|null $dateAllegement The date allegement. |
||
| 5222 | * @return Etablissements Returns this Etablissements. |
||
| 5223 | */ |
||
| 5224 | public function setDateAllegement(?DateTime $dateAllegement): Etablissements { |
||
| 5228 | |||
| 5229 | /** |
||
| 5230 | * Set the date ducs. |
||
| 5231 | * |
||
| 5232 | * @param DateTime|null $dateDucs The date ducs. |
||
| 5233 | * @return Etablissements Returns this Etablissements. |
||
| 5234 | */ |
||
| 5235 | public function setDateDucs(?DateTime $dateDucs): Etablissements { |
||
| 5239 | |||
| 5240 | /** |
||
| 5241 | * Set the date fin cospar. |
||
| 5242 | * |
||
| 5243 | * @param DateTime|null $dateFinCospar The date fin cospar. |
||
| 5244 | * @return Etablissements Returns this Etablissements. |
||
| 5245 | */ |
||
| 5246 | public function setDateFinCospar(?DateTime $dateFinCospar): Etablissements { |
||
| 5250 | |||
| 5251 | /** |
||
| 5252 | * Set the date fin cp. |
||
| 5253 | * |
||
| 5254 | * @param DateTime|null $dateFinCp The date fin cp. |
||
| 5255 | * @return Etablissements Returns this Etablissements. |
||
| 5256 | */ |
||
| 5257 | public function setDateFinCp(?DateTime $dateFinCp): Etablissements { |
||
| 5261 | |||
| 5262 | /** |
||
| 5263 | * Set the date modification. |
||
| 5264 | * |
||
| 5265 | * @param DateTime|null $dateModification The date modification. |
||
| 5266 | * @return Etablissements Returns this Etablissements. |
||
| 5267 | */ |
||
| 5268 | public function setDateModification(?DateTime $dateModification): Etablissements { |
||
| 5272 | |||
| 5273 | /** |
||
| 5274 | * Set the date publication. |
||
| 5275 | * |
||
| 5276 | * @param DateTime|null $datePublication The date publication. |
||
| 5277 | * @return Etablissements Returns this Etablissements. |
||
| 5278 | */ |
||
| 5279 | public function setDatePublication(?DateTime $datePublication): Etablissements { |
||
| 5283 | |||
| 5284 | /** |
||
| 5285 | * Set the debut envoi. |
||
| 5286 | * |
||
| 5287 | * @param DateTime|null $debutEnvoi The debut envoi. |
||
| 5288 | * @return Etablissements Returns this Etablissements. |
||
| 5289 | */ |
||
| 5290 | public function setDebutEnvoi(?DateTime $debutEnvoi): Etablissements { |
||
| 5294 | |||
| 5295 | /** |
||
| 5296 | * Set the detail salarie. |
||
| 5297 | * |
||
| 5298 | * @param bool|null $detailSalarie The detail salarie. |
||
| 5299 | * @return Etablissements Returns this Etablissements. |
||
| 5300 | */ |
||
| 5301 | public function setDetailSalarie(?bool $detailSalarie): Etablissements { |
||
| 5305 | |||
| 5306 | /** |
||
| 5307 | * Set the domaine activite. |
||
| 5308 | * |
||
| 5309 | * @param string|null $domaineActivite The domaine activite. |
||
| 5310 | * @return Etablissements Returns this Etablissements. |
||
| 5311 | */ |
||
| 5312 | public function setDomaineActivite(?string $domaineActivite): Etablissements { |
||
| 5316 | |||
| 5317 | /** |
||
| 5318 | * Set the dossier comptable. |
||
| 5319 | * |
||
| 5320 | * @param string|null $dossierComptable The dossier comptable. |
||
| 5321 | * @return Etablissements Returns this Etablissements. |
||
| 5322 | */ |
||
| 5323 | public function setDossierComptable(?string $dossierComptable): Etablissements { |
||
| 5327 | |||
| 5328 | /** |
||
| 5329 | * Set the edition dif. |
||
| 5330 | * |
||
| 5331 | * @param bool|null $editionDif The edition dif. |
||
| 5332 | * @return Etablissements Returns this Etablissements. |
||
| 5333 | */ |
||
| 5334 | public function setEditionDif(?bool $editionDif): Etablissements { |
||
| 5338 | |||
| 5339 | /** |
||
| 5340 | * Set the edition dif bul. |
||
| 5341 | * |
||
| 5342 | * @param string|null $editionDifBul The edition dif bul. |
||
| 5343 | * @return Etablissements Returns this Etablissements. |
||
| 5344 | */ |
||
| 5345 | public function setEditionDifBul(?string $editionDifBul): Etablissements { |
||
| 5349 | |||
| 5350 | /** |
||
| 5351 | * Set the emetteur1. |
||
| 5352 | * |
||
| 5353 | * @param int|null $emetteur1 The emetteur1. |
||
| 5354 | * @return Etablissements Returns this Etablissements. |
||
| 5355 | */ |
||
| 5356 | public function setEmetteur1(?int $emetteur1): Etablissements { |
||
| 5360 | |||
| 5361 | /** |
||
| 5362 | * Set the emetteur2. |
||
| 5363 | * |
||
| 5364 | * @param int|null $emetteur2 The emetteur2. |
||
| 5365 | * @return Etablissements Returns this Etablissements. |
||
| 5366 | */ |
||
| 5367 | public function setEmetteur2(?int $emetteur2): Etablissements { |
||
| 5371 | |||
| 5372 | /** |
||
| 5373 | * Set the emetteur3. |
||
| 5374 | * |
||
| 5375 | * @param int|null $emetteur3 The emetteur3. |
||
| 5376 | * @return Etablissements Returns this Etablissements. |
||
| 5377 | */ |
||
| 5378 | public function setEmetteur3(?int $emetteur3): Etablissements { |
||
| 5382 | |||
| 5383 | /** |
||
| 5384 | * Set the enseigne. |
||
| 5385 | * |
||
| 5386 | * @param string|null $enseigne The enseigne. |
||
| 5387 | * @return Etablissements Returns this Etablissements. |
||
| 5388 | */ |
||
| 5389 | public function setEnseigne(?string $enseigne): Etablissements { |
||
| 5393 | |||
| 5394 | /** |
||
| 5395 | * Set the etab decl dadsu. |
||
| 5396 | * |
||
| 5397 | * @param bool|null $etabDeclDadsu The etab decl dadsu. |
||
| 5398 | * @return Etablissements Returns this Etablissements. |
||
| 5399 | */ |
||
| 5400 | public function setEtabDeclDadsu(?bool $etabDeclDadsu): Etablissements { |
||
| 5404 | |||
| 5405 | /** |
||
| 5406 | * Set the exclure dadsu. |
||
| 5407 | * |
||
| 5408 | * @param bool|null $exclureDadsu The exclure dadsu. |
||
| 5409 | * @return Etablissements Returns this Etablissements. |
||
| 5410 | */ |
||
| 5411 | public function setExclureDadsu(?bool $exclureDadsu): Etablissements { |
||
| 5415 | |||
| 5416 | /** |
||
| 5417 | * Set the exo lodeom renforcee. |
||
| 5418 | * |
||
| 5419 | * @param bool|null $exoLodeomRenforcee The exo lodeom renforcee. |
||
| 5420 | * @return Etablissements Returns this Etablissements. |
||
| 5421 | */ |
||
| 5422 | public function setExoLodeomRenforcee(?bool $exoLodeomRenforcee): Etablissements { |
||
| 5426 | |||
| 5427 | /** |
||
| 5428 | * Set the fax. |
||
| 5429 | * |
||
| 5430 | * @param string|null $fax The fax. |
||
| 5431 | * @return Etablissements Returns this Etablissements. |
||
| 5432 | */ |
||
| 5433 | public function setFax(?string $fax): Etablissements { |
||
| 5437 | |||
| 5438 | /** |
||
| 5439 | * Set the fin envoi. |
||
| 5440 | * |
||
| 5441 | * @param DateTime|null $finEnvoi The fin envoi. |
||
| 5442 | * @return Etablissements Returns this Etablissements. |
||
| 5443 | */ |
||
| 5444 | public function setFinEnvoi(?DateTime $finEnvoi): Etablissements { |
||
| 5448 | |||
| 5449 | /** |
||
| 5450 | * Set the gere fraction etab. |
||
| 5451 | * |
||
| 5452 | * @param bool|null $gereFractionEtab The gere fraction etab. |
||
| 5453 | * @return Etablissements Returns this Etablissements. |
||
| 5454 | */ |
||
| 5455 | public function setGereFractionEtab(?bool $gereFractionEtab): Etablissements { |
||
| 5459 | |||
| 5460 | /** |
||
| 5461 | * Set the gestion contingent. |
||
| 5462 | * |
||
| 5463 | * @param bool|null $gestionContingent The gestion contingent. |
||
| 5464 | * @return Etablissements Returns this Etablissements. |
||
| 5465 | */ |
||
| 5466 | public function setGestionContingent(?bool $gestionContingent): Etablissements { |
||
| 5470 | |||
| 5471 | /** |
||
| 5472 | * Set the gestion ducs1. |
||
| 5473 | * |
||
| 5474 | * @param string|null $gestionDucs1 The gestion ducs1. |
||
| 5475 | * @return Etablissements Returns this Etablissements. |
||
| 5476 | */ |
||
| 5477 | public function setGestionDucs1(?string $gestionDucs1): Etablissements { |
||
| 5481 | |||
| 5482 | /** |
||
| 5483 | * Set the gestion ducs2. |
||
| 5484 | * |
||
| 5485 | * @param string|null $gestionDucs2 The gestion ducs2. |
||
| 5486 | * @return Etablissements Returns this Etablissements. |
||
| 5487 | */ |
||
| 5488 | public function setGestionDucs2(?string $gestionDucs2): Etablissements { |
||
| 5492 | |||
| 5493 | /** |
||
| 5494 | * Set the gestion jour ferie etab. |
||
| 5495 | * |
||
| 5496 | * @param bool|null $gestionJourFerieEtab The gestion jour ferie etab. |
||
| 5497 | * @return Etablissements Returns this Etablissements. |
||
| 5498 | */ |
||
| 5499 | public function setGestionJourFerieEtab(?bool $gestionJourFerieEtab): Etablissements { |
||
| 5503 | |||
| 5504 | /** |
||
| 5505 | * Set the gestion rtt. |
||
| 5506 | * |
||
| 5507 | * @param bool|null $gestionRtt The gestion rtt. |
||
| 5508 | * @return Etablissements Returns this Etablissements. |
||
| 5509 | */ |
||
| 5510 | public function setGestionRtt(?bool $gestionRtt): Etablissements { |
||
| 5514 | |||
| 5515 | /** |
||
| 5516 | * Set the gestion repos comp. |
||
| 5517 | * |
||
| 5518 | * @param bool|null $gestionReposComp The gestion repos comp. |
||
| 5519 | * @return Etablissements Returns this Etablissements. |
||
| 5520 | */ |
||
| 5521 | public function setGestionReposComp(?bool $gestionReposComp): Etablissements { |
||
| 5525 | |||
| 5526 | /** |
||
| 5527 | * Set the gestion repos recup. |
||
| 5528 | * |
||
| 5529 | * @param bool|null $gestionReposRecup The gestion repos recup. |
||
| 5530 | * @return Etablissements Returns this Etablissements. |
||
| 5531 | */ |
||
| 5532 | public function setGestionReposRecup(?bool $gestionReposRecup): Etablissements { |
||
| 5536 | |||
| 5537 | /** |
||
| 5538 | * Set the gestion repos remplace. |
||
| 5539 | * |
||
| 5540 | * @param bool|null $gestionReposRemplace The gestion repos remplace. |
||
| 5541 | * @return Etablissements Returns this Etablissements. |
||
| 5542 | */ |
||
| 5543 | public function setGestionReposRemplace(?bool $gestionReposRemplace): Etablissements { |
||
| 5547 | |||
| 5548 | /** |
||
| 5549 | * Set the gestion sem type. |
||
| 5550 | * |
||
| 5551 | * @param bool|null $gestionSemType The gestion sem type. |
||
| 5552 | * @return Etablissements Returns this Etablissements. |
||
| 5553 | */ |
||
| 5554 | public function setGestionSemType(?bool $gestionSemType): Etablissements { |
||
| 5558 | |||
| 5559 | /** |
||
| 5560 | * Set the iban1. |
||
| 5561 | * |
||
| 5562 | * @param string|null $iban1 The iban1. |
||
| 5563 | * @return Etablissements Returns this Etablissements. |
||
| 5564 | */ |
||
| 5565 | public function setIban1(?string $iban1): Etablissements { |
||
| 5569 | |||
| 5570 | /** |
||
| 5571 | * Set the iban id client1. |
||
| 5572 | * |
||
| 5573 | * @param string|null $ibanIdClient1 The iban id client1. |
||
| 5574 | * @return Etablissements Returns this Etablissements. |
||
| 5575 | */ |
||
| 5576 | public function setIbanIdClient1(?string $ibanIdClient1): Etablissements { |
||
| 5580 | |||
| 5581 | /** |
||
| 5582 | * Set the inscrit rep metier. |
||
| 5583 | * |
||
| 5584 | * @param bool|null $inscritRepMetier The inscrit rep metier. |
||
| 5585 | * @return Etablissements Returns this Etablissements. |
||
| 5586 | */ |
||
| 5587 | public function setInscritRepMetier(?bool $inscritRepMetier): Etablissements { |
||
| 5591 | |||
| 5592 | /** |
||
| 5593 | * Set the jour verse salaire. |
||
| 5594 | * |
||
| 5595 | * @param string|null $jourVerseSalaire The jour verse salaire. |
||
| 5596 | * @return Etablissements Returns this Etablissements. |
||
| 5597 | */ |
||
| 5598 | public function setJourVerseSalaire(?string $jourVerseSalaire): Etablissements { |
||
| 5602 | |||
| 5603 | /** |
||
| 5604 | * Set the maintien intervient cp. |
||
| 5605 | * |
||
| 5606 | * @param bool|null $maintienIntervientCp The maintien intervient cp. |
||
| 5607 | * @return Etablissements Returns this Etablissements. |
||
| 5608 | */ |
||
| 5609 | public function setMaintienIntervientCp(?bool $maintienIntervientCp): Etablissements { |
||
| 5613 | |||
| 5614 | /** |
||
| 5615 | * Set the maintien salaire. |
||
| 5616 | * |
||
| 5617 | * @param bool|null $maintienSalaire The maintien salaire. |
||
| 5618 | * @return Etablissements Returns this Etablissements. |
||
| 5619 | */ |
||
| 5620 | public function setMaintienSalaire(?bool $maintienSalaire): Etablissements { |
||
| 5624 | |||
| 5625 | /** |
||
| 5626 | * Set the maintien specifique. |
||
| 5627 | * |
||
| 5628 | * @param bool|null $maintienSpecifique The maintien specifique. |
||
| 5629 | * @return Etablissements Returns this Etablissements. |
||
| 5630 | */ |
||
| 5631 | public function setMaintienSpecifique(?bool $maintienSpecifique): Etablissements { |
||
| 5635 | |||
| 5636 | /** |
||
| 5637 | * Set the masque service employe. |
||
| 5638 | * |
||
| 5639 | * @param bool|null $masqueServiceEmploye The masque service employe. |
||
| 5640 | * @return Etablissements Returns this Etablissements. |
||
| 5641 | */ |
||
| 5642 | public function setMasqueServiceEmploye(?bool $masqueServiceEmploye): Etablissements { |
||
| 5646 | |||
| 5647 | /** |
||
| 5648 | * Set the methode cp. |
||
| 5649 | * |
||
| 5650 | * @param string|null $methodeCp The methode cp. |
||
| 5651 | * @return Etablissements Returns this Etablissements. |
||
| 5652 | */ |
||
| 5653 | public function setMethodeCp(?string $methodeCp): Etablissements { |
||
| 5657 | |||
| 5658 | /** |
||
| 5659 | * Set the mois cloture cp. |
||
| 5660 | * |
||
| 5661 | * @param string|null $moisClotureCp The mois cloture cp. |
||
| 5662 | * @return Etablissements Returns this Etablissements. |
||
| 5663 | */ |
||
| 5664 | public function setMoisClotureCp(?string $moisClotureCp): Etablissements { |
||
| 5668 | |||
| 5669 | /** |
||
| 5670 | * Set the mois cloture dif. |
||
| 5671 | * |
||
| 5672 | * @param string|null $moisClotureDif The mois cloture dif. |
||
| 5673 | * @return Etablissements Returns this Etablissements. |
||
| 5674 | */ |
||
| 5675 | public function setMoisClotureDif(?string $moisClotureDif): Etablissements { |
||
| 5679 | |||
| 5680 | /** |
||
| 5681 | * Set the mois cloture rtt. |
||
| 5682 | * |
||
| 5683 | * @param string|null $moisClotureRtt The mois cloture rtt. |
||
| 5684 | * @return Etablissements Returns this Etablissements. |
||
| 5685 | */ |
||
| 5686 | public function setMoisClotureRtt(?string $moisClotureRtt): Etablissements { |
||
| 5690 | |||
| 5691 | /** |
||
| 5692 | * Set the montant1. |
||
| 5693 | * |
||
| 5694 | * @param float|null $montant1 The montant1. |
||
| 5695 | * @return Etablissements Returns this Etablissements. |
||
| 5696 | */ |
||
| 5697 | public function setMontant1(?float $montant1): Etablissements { |
||
| 5701 | |||
| 5702 | /** |
||
| 5703 | * Set the montant2. |
||
| 5704 | * |
||
| 5705 | * @param float|null $montant2 The montant2. |
||
| 5706 | * @return Etablissements Returns this Etablissements. |
||
| 5707 | */ |
||
| 5708 | public function setMontant2(?float $montant2): Etablissements { |
||
| 5712 | |||
| 5713 | /** |
||
| 5714 | * Set the montant3. |
||
| 5715 | * |
||
| 5716 | * @param float|null $montant3 The montant3. |
||
| 5717 | * @return Etablissements Returns this Etablissements. |
||
| 5718 | */ |
||
| 5719 | public function setMontant3(?float $montant3): Etablissements { |
||
| 5723 | |||
| 5724 | /** |
||
| 5725 | * Set the montant4. |
||
| 5726 | * |
||
| 5727 | * @param float|null $montant4 The montant4. |
||
| 5728 | * @return Etablissements Returns this Etablissements. |
||
| 5729 | */ |
||
| 5730 | public function setMontant4(?float $montant4): Etablissements { |
||
| 5734 | |||
| 5735 | /** |
||
| 5736 | * Set the montant5. |
||
| 5737 | * |
||
| 5738 | * @param float|null $montant5 The montant5. |
||
| 5739 | * @return Etablissements Returns this Etablissements. |
||
| 5740 | */ |
||
| 5741 | public function setMontant5(?float $montant5): Etablissements { |
||
| 5745 | |||
| 5746 | /** |
||
| 5747 | * Set the montant allegement. |
||
| 5748 | * |
||
| 5749 | * @param float|null $montantAllegement The montant allegement. |
||
| 5750 | * @return Etablissements Returns this Etablissements. |
||
| 5751 | */ |
||
| 5752 | public function setMontantAllegement(?float $montantAllegement): Etablissements { |
||
| 5756 | |||
| 5757 | /** |
||
| 5758 | * Set the nature analytique. |
||
| 5759 | * |
||
| 5760 | * @param string|null $natureAnalytique The nature analytique. |
||
| 5761 | * @return Etablissements Returns this Etablissements. |
||
| 5762 | */ |
||
| 5763 | public function setNatureAnalytique(?string $natureAnalytique): Etablissements { |
||
| 5767 | |||
| 5768 | /** |
||
| 5769 | * Set the nb hdif an. |
||
| 5770 | * |
||
| 5771 | * @param float|null $nbHdifAn The nb hdif an. |
||
| 5772 | * @return Etablissements Returns this Etablissements. |
||
| 5773 | */ |
||
| 5774 | public function setNbHdifAn(?float $nbHdifAn): Etablissements { |
||
| 5778 | |||
| 5779 | /** |
||
| 5780 | * Set the nb h jour1. |
||
| 5781 | * |
||
| 5782 | * @param float|null $nbHJour1 The nb h jour1. |
||
| 5783 | * @return Etablissements Returns this Etablissements. |
||
| 5784 | */ |
||
| 5785 | public function setNbHJour1(?float $nbHJour1): Etablissements { |
||
| 5789 | |||
| 5790 | /** |
||
| 5791 | * Set the nb h jour2. |
||
| 5792 | * |
||
| 5793 | * @param float|null $nbHJour2 The nb h jour2. |
||
| 5794 | * @return Etablissements Returns this Etablissements. |
||
| 5795 | */ |
||
| 5796 | public function setNbHJour2(?float $nbHJour2): Etablissements { |
||
| 5800 | |||
| 5801 | /** |
||
| 5802 | * Set the nb h jour3. |
||
| 5803 | * |
||
| 5804 | * @param float|null $nbHJour3 The nb h jour3. |
||
| 5805 | * @return Etablissements Returns this Etablissements. |
||
| 5806 | */ |
||
| 5807 | public function setNbHJour3(?float $nbHJour3): Etablissements { |
||
| 5811 | |||
| 5812 | /** |
||
| 5813 | * Set the nb h jour4. |
||
| 5814 | * |
||
| 5815 | * @param float|null $nbHJour4 The nb h jour4. |
||
| 5816 | * @return Etablissements Returns this Etablissements. |
||
| 5817 | */ |
||
| 5818 | public function setNbHJour4(?float $nbHJour4): Etablissements { |
||
| 5822 | |||
| 5823 | /** |
||
| 5824 | * Set the nb h jour5. |
||
| 5825 | * |
||
| 5826 | * @param float|null $nbHJour5 The nb h jour5. |
||
| 5827 | * @return Etablissements Returns this Etablissements. |
||
| 5828 | */ |
||
| 5829 | public function setNbHJour5(?float $nbHJour5): Etablissements { |
||
| 5833 | |||
| 5834 | /** |
||
| 5835 | * Set the nb h jour6. |
||
| 5836 | * |
||
| 5837 | * @param float|null $nbHJour6 The nb h jour6. |
||
| 5838 | * @return Etablissements Returns this Etablissements. |
||
| 5839 | */ |
||
| 5840 | public function setNbHJour6(?float $nbHJour6): Etablissements { |
||
| 5844 | |||
| 5845 | /** |
||
| 5846 | * Set the nb h jour7. |
||
| 5847 | * |
||
| 5848 | * @param float|null $nbHJour7 The nb h jour7. |
||
| 5849 | * @return Etablissements Returns this Etablissements. |
||
| 5850 | */ |
||
| 5851 | public function setNbHJour7(?float $nbHJour7): Etablissements { |
||
| 5855 | |||
| 5856 | /** |
||
| 5857 | * Set the nb heure trav mois. |
||
| 5858 | * |
||
| 5859 | * @param float|null $nbHeureTravMois The nb heure trav mois. |
||
| 5860 | * @return Etablissements Returns this Etablissements. |
||
| 5861 | */ |
||
| 5862 | public function setNbHeureTravMois(?float $nbHeureTravMois): Etablissements { |
||
| 5866 | |||
| 5867 | /** |
||
| 5868 | * Set the nb jour base. |
||
| 5869 | * |
||
| 5870 | * @param float|null $nbJourBase The nb jour base. |
||
| 5871 | * @return Etablissements Returns this Etablissements. |
||
| 5872 | */ |
||
| 5873 | public function setNbJourBase(?float $nbJourBase): Etablissements { |
||
| 5877 | |||
| 5878 | /** |
||
| 5879 | * Set the nb jour base cp. |
||
| 5880 | * |
||
| 5881 | * @param float|null $nbJourBaseCp The nb jour base cp. |
||
| 5882 | * @return Etablissements Returns this Etablissements. |
||
| 5883 | */ |
||
| 5884 | public function setNbJourBaseCp(?float $nbJourBaseCp): Etablissements { |
||
| 5888 | |||
| 5889 | /** |
||
| 5890 | * Set the nb jour cp acquis. |
||
| 5891 | * |
||
| 5892 | * @param float|null $nbJourCpAcquis The nb jour cp acquis. |
||
| 5893 | * @return Etablissements Returns this Etablissements. |
||
| 5894 | */ |
||
| 5895 | public function setNbJourCpAcquis(?float $nbJourCpAcquis): Etablissements { |
||
| 5899 | |||
| 5900 | /** |
||
| 5901 | * Set the nb m ajout per. |
||
| 5902 | * |
||
| 5903 | * @param string|null $nbMAjoutPer The nb m ajout per. |
||
| 5904 | * @return Etablissements Returns this Etablissements. |
||
| 5905 | */ |
||
| 5906 | public function setNbMAjoutPer(?string $nbMAjoutPer): Etablissements { |
||
| 5910 | |||
| 5911 | /** |
||
| 5912 | * Set the nb mois aubry1. |
||
| 5913 | * |
||
| 5914 | * @param float|null $nbMoisAubry1 The nb mois aubry1. |
||
| 5915 | * @return Etablissements Returns this Etablissements. |
||
| 5916 | */ |
||
| 5917 | public function setNbMoisAubry1(?float $nbMoisAubry1): Etablissements { |
||
| 5921 | |||
| 5922 | /** |
||
| 5923 | * Set the nbh jour rtt. |
||
| 5924 | * |
||
| 5925 | * @param float|null $nbhJourRtt The nbh jour rtt. |
||
| 5926 | * @return Etablissements Returns this Etablissements. |
||
| 5927 | */ |
||
| 5928 | public function setNbhJourRtt(?float $nbhJourRtt): Etablissements { |
||
| 5932 | |||
| 5933 | /** |
||
| 5934 | * Set the ne pas activer loi fillon2003. |
||
| 5935 | * |
||
| 5936 | * @param bool|null $nePasActiverLoiFillon2003 The ne pas activer loi fillon2003. |
||
| 5937 | * @return Etablissements Returns this Etablissements. |
||
| 5938 | */ |
||
| 5939 | public function setNePasActiverLoiFillon2003(?bool $nePasActiverLoiFillon2003): Etablissements { |
||
| 5943 | |||
| 5944 | /** |
||
| 5945 | * Set the nom ville. |
||
| 5946 | * |
||
| 5947 | * @param string|null $nomVille The nom ville. |
||
| 5948 | * @return Etablissements Returns this Etablissements. |
||
| 5949 | */ |
||
| 5950 | public function setNomVille(?string $nomVille): Etablissements { |
||
| 5954 | |||
| 5955 | /** |
||
| 5956 | * Set the nom ville insee. |
||
| 5957 | * |
||
| 5958 | * @param string|null $nomVilleInsee The nom ville insee. |
||
| 5959 | * @return Etablissements Returns this Etablissements. |
||
| 5960 | */ |
||
| 5961 | public function setNomVilleInsee(?string $nomVilleInsee): Etablissements { |
||
| 5965 | |||
| 5966 | /** |
||
| 5967 | * Set the nom voie. |
||
| 5968 | * |
||
| 5969 | * @param string|null $nomVoie The nom voie. |
||
| 5970 | * @return Etablissements Returns this Etablissements. |
||
| 5971 | */ |
||
| 5972 | public function setNomVoie(?string $nomVoie): Etablissements { |
||
| 5976 | |||
| 5977 | /** |
||
| 5978 | * Set the num voie. |
||
| 5979 | * |
||
| 5980 | * @param string|null $numVoie The num voie. |
||
| 5981 | * @return Etablissements Returns this Etablissements. |
||
| 5982 | */ |
||
| 5983 | public function setNumVoie(?string $numVoie): Etablissements { |
||
| 5987 | |||
| 5988 | /** |
||
| 5989 | * Set the opca dif. |
||
| 5990 | * |
||
| 5991 | * @param string|null $opcaDif The opca dif. |
||
| 5992 | * @return Etablissements Returns this Etablissements. |
||
| 5993 | */ |
||
| 5994 | public function setOpcaDif(?string $opcaDif): Etablissements { |
||
| 5998 | |||
| 5999 | /** |
||
| 6000 | * Set the p lafond exo. |
||
| 6001 | * |
||
| 6002 | * @param float|null $pLafondExo The p lafond exo. |
||
| 6003 | * @return Etablissements Returns this Etablissements. |
||
| 6004 | */ |
||
| 6005 | public function setPLafondExo(?float $pLafondExo): Etablissements { |
||
| 6009 | |||
| 6010 | /** |
||
| 6011 | * Set the paie decalee. |
||
| 6012 | * |
||
| 6013 | * @param bool|null $paieDecalee The paie decalee. |
||
| 6014 | * @return Etablissements Returns this Etablissements. |
||
| 6015 | */ |
||
| 6016 | public function setPaieDecalee(?bool $paieDecalee): Etablissements { |
||
| 6020 | |||
| 6021 | /** |
||
| 6022 | * Set the plafond1 caisse1. |
||
| 6023 | * |
||
| 6024 | * @param float|null $plafond1Caisse1 The plafond1 caisse1. |
||
| 6025 | * @return Etablissements Returns this Etablissements. |
||
| 6026 | */ |
||
| 6027 | public function setPlafond1Caisse1(?float $plafond1Caisse1): Etablissements { |
||
| 6031 | |||
| 6032 | /** |
||
| 6033 | * Set the plafond1 caisse2. |
||
| 6034 | * |
||
| 6035 | * @param float|null $plafond1Caisse2 The plafond1 caisse2. |
||
| 6036 | * @return Etablissements Returns this Etablissements. |
||
| 6037 | */ |
||
| 6038 | public function setPlafond1Caisse2(?float $plafond1Caisse2): Etablissements { |
||
| 6042 | |||
| 6043 | /** |
||
| 6044 | * Set the plafond1 caisse3. |
||
| 6045 | * |
||
| 6046 | * @param float|null $plafond1Caisse3 The plafond1 caisse3. |
||
| 6047 | * @return Etablissements Returns this Etablissements. |
||
| 6048 | */ |
||
| 6049 | public function setPlafond1Caisse3(?float $plafond1Caisse3): Etablissements { |
||
| 6053 | |||
| 6054 | /** |
||
| 6055 | * Set the plafond2 caisse1. |
||
| 6056 | * |
||
| 6057 | * @param float|null $plafond2Caisse1 The plafond2 caisse1. |
||
| 6058 | * @return Etablissements Returns this Etablissements. |
||
| 6059 | */ |
||
| 6060 | public function setPlafond2Caisse1(?float $plafond2Caisse1): Etablissements { |
||
| 6064 | |||
| 6065 | /** |
||
| 6066 | * Set the plafond2 caisse2. |
||
| 6067 | * |
||
| 6068 | * @param float|null $plafond2Caisse2 The plafond2 caisse2. |
||
| 6069 | * @return Etablissements Returns this Etablissements. |
||
| 6070 | */ |
||
| 6071 | public function setPlafond2Caisse2(?float $plafond2Caisse2): Etablissements { |
||
| 6075 | |||
| 6076 | /** |
||
| 6077 | * Set the plafond2 caisse3. |
||
| 6078 | * |
||
| 6079 | * @param float|null $plafond2Caisse3 The plafond2 caisse3. |
||
| 6080 | * @return Etablissements Returns this Etablissements. |
||
| 6081 | */ |
||
| 6082 | public function setPlafond2Caisse3(?float $plafond2Caisse3): Etablissements { |
||
| 6086 | |||
| 6087 | /** |
||
| 6088 | * Set the pourcent bonif. |
||
| 6089 | * |
||
| 6090 | * @param float|null $pourcentBonif The pourcent bonif. |
||
| 6091 | * @return Etablissements Returns this Etablissements. |
||
| 6092 | */ |
||
| 6093 | public function setPourcentBonif(?float $pourcentBonif): Etablissements { |
||
| 6097 | |||
| 6098 | /** |
||
| 6099 | * Set the pourcent exo. |
||
| 6100 | * |
||
| 6101 | * @param float|null $pourcentExo The pourcent exo. |
||
| 6102 | * @return Etablissements Returns this Etablissements. |
||
| 6103 | */ |
||
| 6104 | public function setPourcentExo(?float $pourcentExo): Etablissements { |
||
| 6108 | |||
| 6109 | /** |
||
| 6110 | * Set the pourcent transport. |
||
| 6111 | * |
||
| 6112 | * @param float|null $pourcentTransport The pourcent transport. |
||
| 6113 | * @return Etablissements Returns this Etablissements. |
||
| 6114 | */ |
||
| 6115 | public function setPourcentTransport(?float $pourcentTransport): Etablissements { |
||
| 6119 | |||
| 6120 | /** |
||
| 6121 | * Set the pourcentage imp. |
||
| 6122 | * |
||
| 6123 | * @param float|null $pourcentageImp The pourcentage imp. |
||
| 6124 | * @return Etablissements Returns this Etablissements. |
||
| 6125 | */ |
||
| 6126 | public function setPourcentageImp(?float $pourcentageImp): Etablissements { |
||
| 6130 | |||
| 6131 | /** |
||
| 6132 | * Set the prof spectacle. |
||
| 6133 | * |
||
| 6134 | * @param bool|null $profSpectacle The prof spectacle. |
||
| 6135 | * @return Etablissements Returns this Etablissements. |
||
| 6136 | */ |
||
| 6137 | public function setProfSpectacle(?bool $profSpectacle): Etablissements { |
||
| 6141 | |||
| 6142 | /** |
||
| 6143 | * Set the profession. |
||
| 6144 | * |
||
| 6145 | * @param string|null $profession The profession. |
||
| 6146 | * @return Etablissements Returns this Etablissements. |
||
| 6147 | */ |
||
| 6148 | public function setProfession(?string $profession): Etablissements { |
||
| 6152 | |||
| 6153 | /** |
||
| 6154 | * Set the prud type. |
||
| 6155 | * |
||
| 6156 | * @param string|null $prudType The prud type. |
||
| 6157 | * @return Etablissements Returns this Etablissements. |
||
| 6158 | */ |
||
| 6159 | public function setPrudType(?string $prudType): Etablissements { |
||
| 6163 | |||
| 6164 | /** |
||
| 6165 | * Set the prud type dadsu. |
||
| 6166 | * |
||
| 6167 | * @param string|null $prudTypeDadsu The prud type dadsu. |
||
| 6168 | * @return Etablissements Returns this Etablissements. |
||
| 6169 | */ |
||
| 6170 | public function setPrudTypeDadsu(?string $prudTypeDadsu): Etablissements { |
||
| 6174 | |||
| 6175 | /** |
||
| 6176 | * Set the publication. |
||
| 6177 | * |
||
| 6178 | * @param bool|null $publication The publication. |
||
| 6179 | * @return Etablissements Returns this Etablissements. |
||
| 6180 | */ |
||
| 6181 | public function setPublication(?bool $publication): Etablissements { |
||
| 6185 | |||
| 6186 | /** |
||
| 6187 | * Set the qualite. |
||
| 6188 | * |
||
| 6189 | * @param string|null $qualite The qualite. |
||
| 6190 | * @return Etablissements Returns this Etablissements. |
||
| 6191 | */ |
||
| 6192 | public function setQualite(?string $qualite): Etablissements { |
||
| 6196 | |||
| 6197 | /** |
||
| 6198 | * Set the rtt1. |
||
| 6199 | * |
||
| 6200 | * @param float|null $rtt1 The rtt1. |
||
| 6201 | * @return Etablissements Returns this Etablissements. |
||
| 6202 | */ |
||
| 6203 | public function setRtt1(?float $rtt1): Etablissements { |
||
| 6207 | |||
| 6208 | /** |
||
| 6209 | * Set the rtt10. |
||
| 6210 | * |
||
| 6211 | * @param float|null $rtt10 The rtt10. |
||
| 6212 | * @return Etablissements Returns this Etablissements. |
||
| 6213 | */ |
||
| 6214 | public function setRtt10(?float $rtt10): Etablissements { |
||
| 6218 | |||
| 6219 | /** |
||
| 6220 | * Set the rtt11. |
||
| 6221 | * |
||
| 6222 | * @param float|null $rtt11 The rtt11. |
||
| 6223 | * @return Etablissements Returns this Etablissements. |
||
| 6224 | */ |
||
| 6225 | public function setRtt11(?float $rtt11): Etablissements { |
||
| 6229 | |||
| 6230 | /** |
||
| 6231 | * Set the rtt12. |
||
| 6232 | * |
||
| 6233 | * @param float|null $rtt12 The rtt12. |
||
| 6234 | * @return Etablissements Returns this Etablissements. |
||
| 6235 | */ |
||
| 6236 | public function setRtt12(?float $rtt12): Etablissements { |
||
| 6240 | |||
| 6241 | /** |
||
| 6242 | * Set the rtt2. |
||
| 6243 | * |
||
| 6244 | * @param float|null $rtt2 The rtt2. |
||
| 6245 | * @return Etablissements Returns this Etablissements. |
||
| 6246 | */ |
||
| 6247 | public function setRtt2(?float $rtt2): Etablissements { |
||
| 6251 | |||
| 6252 | /** |
||
| 6253 | * Set the rtt3. |
||
| 6254 | * |
||
| 6255 | * @param float|null $rtt3 The rtt3. |
||
| 6256 | * @return Etablissements Returns this Etablissements. |
||
| 6257 | */ |
||
| 6258 | public function setRtt3(?float $rtt3): Etablissements { |
||
| 6262 | |||
| 6263 | /** |
||
| 6264 | * Set the rtt4. |
||
| 6265 | * |
||
| 6266 | * @param float|null $rtt4 The rtt4. |
||
| 6267 | * @return Etablissements Returns this Etablissements. |
||
| 6268 | */ |
||
| 6269 | public function setRtt4(?float $rtt4): Etablissements { |
||
| 6273 | |||
| 6274 | /** |
||
| 6275 | * Set the rtt5. |
||
| 6276 | * |
||
| 6277 | * @param float|null $rtt5 The rtt5. |
||
| 6278 | * @return Etablissements Returns this Etablissements. |
||
| 6279 | */ |
||
| 6280 | public function setRtt5(?float $rtt5): Etablissements { |
||
| 6284 | |||
| 6285 | /** |
||
| 6286 | * Set the rtt6. |
||
| 6287 | * |
||
| 6288 | * @param float|null $rtt6 The rtt6. |
||
| 6289 | * @return Etablissements Returns this Etablissements. |
||
| 6290 | */ |
||
| 6291 | public function setRtt6(?float $rtt6): Etablissements { |
||
| 6295 | |||
| 6296 | /** |
||
| 6297 | * Set the rtt7. |
||
| 6298 | * |
||
| 6299 | * @param float|null $rtt7 The rtt7. |
||
| 6300 | * @return Etablissements Returns this Etablissements. |
||
| 6301 | */ |
||
| 6302 | public function setRtt7(?float $rtt7): Etablissements { |
||
| 6306 | |||
| 6307 | /** |
||
| 6308 | * Set the rtt8. |
||
| 6309 | * |
||
| 6310 | * @param float|null $rtt8 The rtt8. |
||
| 6311 | * @return Etablissements Returns this Etablissements. |
||
| 6312 | */ |
||
| 6313 | public function setRtt8(?float $rtt8): Etablissements { |
||
| 6317 | |||
| 6318 | /** |
||
| 6319 | * Set the rtt9. |
||
| 6320 | * |
||
| 6321 | * @param float|null $rtt9 The rtt9. |
||
| 6322 | * @return Etablissements Returns this Etablissements. |
||
| 6323 | */ |
||
| 6324 | public function setRtt9(?float $rtt9): Etablissements { |
||
| 6328 | |||
| 6329 | /** |
||
| 6330 | * Set the raison sociale. |
||
| 6331 | * |
||
| 6332 | * @param string|null $raisonSociale The raison sociale. |
||
| 6333 | * @return Etablissements Returns this Etablissements. |
||
| 6334 | */ |
||
| 6335 | public function setRaisonSociale(?string $raisonSociale): Etablissements { |
||
| 6339 | |||
| 6340 | /** |
||
| 6341 | * Set the reduction fillon. |
||
| 6342 | * |
||
| 6343 | * @param bool|null $reductionFillon The reduction fillon. |
||
| 6344 | * @return Etablissements Returns this Etablissements. |
||
| 6345 | */ |
||
| 6346 | public function setReductionFillon(?bool $reductionFillon): Etablissements { |
||
| 6350 | |||
| 6351 | /** |
||
| 6352 | * Set the responsable. |
||
| 6353 | * |
||
| 6354 | * @param string|null $responsable The responsable. |
||
| 6355 | * @return Etablissements Returns this Etablissements. |
||
| 6356 | */ |
||
| 6357 | public function setResponsable(?string $responsable): Etablissements { |
||
| 6361 | |||
| 6362 | /** |
||
| 6363 | * Set the rib1. |
||
| 6364 | * |
||
| 6365 | * @param string|null $rib1 The rib1. |
||
| 6366 | * @return Etablissements Returns this Etablissements. |
||
| 6367 | */ |
||
| 6368 | public function setRib1(?string $rib1): Etablissements { |
||
| 6372 | |||
| 6373 | /** |
||
| 6374 | * Set the rib2. |
||
| 6375 | * |
||
| 6376 | * @param string|null $rib2 The rib2. |
||
| 6377 | * @return Etablissements Returns this Etablissements. |
||
| 6378 | */ |
||
| 6379 | public function setRib2(?string $rib2): Etablissements { |
||
| 6383 | |||
| 6384 | /** |
||
| 6385 | * Set the rib3. |
||
| 6386 | * |
||
| 6387 | * @param string|null $rib3 The rib3. |
||
| 6388 | * @return Etablissements Returns this Etablissements. |
||
| 6389 | */ |
||
| 6390 | public function setRib3(?string $rib3): Etablissements { |
||
| 6394 | |||
| 6395 | /** |
||
| 6396 | * Set the siege dadsu. |
||
| 6397 | * |
||
| 6398 | * @param bool|null $siegeDadsu The siege dadsu. |
||
| 6399 | * @return Etablissements Returns this Etablissements. |
||
| 6400 | */ |
||
| 6401 | public function setSiegeDadsu(?bool $siegeDadsu): Etablissements { |
||
| 6405 | |||
| 6406 | /** |
||
| 6407 | * Set the siret. |
||
| 6408 | * |
||
| 6409 | * @param string|null $siret The siret. |
||
| 6410 | * @return Etablissements Returns this Etablissements. |
||
| 6411 | */ |
||
| 6412 | public function setSiret(?string $siret): Etablissements { |
||
| 6416 | |||
| 6417 | /** |
||
| 6418 | * Set the situation geo. |
||
| 6419 | * |
||
| 6420 | * @param string|null $situationGeo The situation geo. |
||
| 6421 | * @return Etablissements Returns this Etablissements. |
||
| 6422 | */ |
||
| 6423 | public function setSituationGeo(?string $situationGeo): Etablissements { |
||
| 6427 | |||
| 6428 | /** |
||
| 6429 | * Set the subrogation. |
||
| 6430 | * |
||
| 6431 | * @param bool|null $subrogation The subrogation. |
||
| 6432 | * @return Etablissements Returns this Etablissements. |
||
| 6433 | */ |
||
| 6434 | public function setSubrogation(?bool $subrogation): Etablissements { |
||
| 6438 | |||
| 6439 | /** |
||
| 6440 | * Set the suivi analytique. |
||
| 6441 | * |
||
| 6442 | * @param bool|null $suiviAnalytique The suivi analytique. |
||
| 6443 | * @return Etablissements Returns this Etablissements. |
||
| 6444 | */ |
||
| 6445 | public function setSuiviAnalytique(?bool $suiviAnalytique): Etablissements { |
||
| 6449 | |||
| 6450 | /** |
||
| 6451 | * Set the tds128. |
||
| 6452 | * |
||
| 6453 | * @param string|null $tds128 The tds128. |
||
| 6454 | * @return Etablissements Returns this Etablissements. |
||
| 6455 | */ |
||
| 6456 | public function setTds128(?string $tds128): Etablissements { |
||
| 6460 | |||
| 6461 | /** |
||
| 6462 | * Set the tds19. |
||
| 6463 | * |
||
| 6464 | * @param string|null $tds19 The tds19. |
||
| 6465 | * @return Etablissements Returns this Etablissements. |
||
| 6466 | */ |
||
| 6467 | public function setTds19(?string $tds19): Etablissements { |
||
| 6471 | |||
| 6472 | /** |
||
| 6473 | * Set the tds47. |
||
| 6474 | * |
||
| 6475 | * @param string|null $tds47 The tds47. |
||
| 6476 | * @return Etablissements Returns this Etablissements. |
||
| 6477 | */ |
||
| 6478 | public function setTds47(?string $tds47): Etablissements { |
||
| 6482 | |||
| 6483 | /** |
||
| 6484 | * Set the taux actionsociale. |
||
| 6485 | * |
||
| 6486 | * @param float|null $tauxActionsociale The taux actionsociale. |
||
| 6487 | * @return Etablissements Returns this Etablissements. |
||
| 6488 | */ |
||
| 6489 | public function setTauxActionsociale(?float $tauxActionsociale): Etablissements { |
||
| 6493 | |||
| 6494 | /** |
||
| 6495 | * Set the taux construction. |
||
| 6496 | * |
||
| 6497 | * @param float|null $tauxConstruction The taux construction. |
||
| 6498 | * @return Etablissements Returns this Etablissements. |
||
| 6499 | */ |
||
| 6500 | public function setTauxConstruction(?float $tauxConstruction): Etablissements { |
||
| 6504 | |||
| 6505 | /** |
||
| 6506 | * Set the taux formation. |
||
| 6507 | * |
||
| 6508 | * @param float|null $tauxFormation The taux formation. |
||
| 6509 | * @return Etablissements Returns this Etablissements. |
||
| 6510 | */ |
||
| 6511 | public function setTauxFormation(?float $tauxFormation): Etablissements { |
||
| 6515 | |||
| 6516 | /** |
||
| 6517 | * Set the taux h sup1. |
||
| 6518 | * |
||
| 6519 | * @param float|null $tauxHSup1 The taux h sup1. |
||
| 6520 | * @return Etablissements Returns this Etablissements. |
||
| 6521 | */ |
||
| 6522 | public function setTauxHSup1(?float $tauxHSup1): Etablissements { |
||
| 6526 | |||
| 6527 | /** |
||
| 6528 | * Set the taux h sup2. |
||
| 6529 | * |
||
| 6530 | * @param float|null $tauxHSup2 The taux h sup2. |
||
| 6531 | * @return Etablissements Returns this Etablissements. |
||
| 6532 | */ |
||
| 6533 | public function setTauxHSup2(?float $tauxHSup2): Etablissements { |
||
| 6537 | |||
| 6538 | /** |
||
| 6539 | * Set the taux h sup3. |
||
| 6540 | * |
||
| 6541 | * @param float|null $tauxHSup3 The taux h sup3. |
||
| 6542 | * @return Etablissements Returns this Etablissements. |
||
| 6543 | */ |
||
| 6544 | public function setTauxHSup3(?float $tauxHSup3): Etablissements { |
||
| 6548 | |||
| 6549 | /** |
||
| 6550 | * Set the taux h sup4. |
||
| 6551 | * |
||
| 6552 | * @param float|null $tauxHSup4 The taux h sup4. |
||
| 6553 | * @return Etablissements Returns this Etablissements. |
||
| 6554 | */ |
||
| 6555 | public function setTauxHSup4(?float $tauxHSup4): Etablissements { |
||
| 6559 | |||
| 6560 | /** |
||
| 6561 | * Set the taux h sup5. |
||
| 6562 | * |
||
| 6563 | * @param float|null $tauxHSup5 The taux h sup5. |
||
| 6564 | * @return Etablissements Returns this Etablissements. |
||
| 6565 | */ |
||
| 6566 | public function setTauxHSup5(?float $tauxHSup5): Etablissements { |
||
| 6570 | |||
| 6571 | /** |
||
| 6572 | * Set the taux ret tr2 pp. |
||
| 6573 | * |
||
| 6574 | * @param float|null $tauxRetTr2Pp The taux ret tr2 pp. |
||
| 6575 | * @return Etablissements Returns this Etablissements. |
||
| 6576 | */ |
||
| 6577 | public function setTauxRetTr2Pp(?float $tauxRetTr2Pp): Etablissements { |
||
| 6581 | |||
| 6582 | /** |
||
| 6583 | * Set the taux ret tr2 ps. |
||
| 6584 | * |
||
| 6585 | * @param float|null $tauxRetTr2Ps The taux ret tr2 ps. |
||
| 6586 | * @return Etablissements Returns this Etablissements. |
||
| 6587 | */ |
||
| 6588 | public function setTauxRetTr2Ps(?float $tauxRetTr2Ps): Etablissements { |
||
| 6592 | |||
| 6593 | /** |
||
| 6594 | * Set the taux ret tr app. |
||
| 6595 | * |
||
| 6596 | * @param float|null $tauxRetTrApp The taux ret tr app. |
||
| 6597 | * @return Etablissements Returns this Etablissements. |
||
| 6598 | */ |
||
| 6599 | public function setTauxRetTrApp(?float $tauxRetTrApp): Etablissements { |
||
| 6603 | |||
| 6604 | /** |
||
| 6605 | * Set the taux ret tr aps. |
||
| 6606 | * |
||
| 6607 | * @param float|null $tauxRetTrAps The taux ret tr aps. |
||
| 6608 | * @return Etablissements Returns this Etablissements. |
||
| 6609 | */ |
||
| 6610 | public function setTauxRetTrAps(?float $tauxRetTrAps): Etablissements { |
||
| 6614 | |||
| 6615 | /** |
||
| 6616 | * Set the taux ret tr bpp. |
||
| 6617 | * |
||
| 6618 | * @param float|null $tauxRetTrBpp The taux ret tr bpp. |
||
| 6619 | * @return Etablissements Returns this Etablissements. |
||
| 6620 | */ |
||
| 6621 | public function setTauxRetTrBpp(?float $tauxRetTrBpp): Etablissements { |
||
| 6625 | |||
| 6626 | /** |
||
| 6627 | * Set the taux ret tr bps. |
||
| 6628 | * |
||
| 6629 | * @param float|null $tauxRetTrBps The taux ret tr bps. |
||
| 6630 | * @return Etablissements Returns this Etablissements. |
||
| 6631 | */ |
||
| 6632 | public function setTauxRetTrBps(?float $tauxRetTrBps): Etablissements { |
||
| 6636 | |||
| 6637 | /** |
||
| 6638 | * Set the taux ret tr cpp. |
||
| 6639 | * |
||
| 6640 | * @param float|null $tauxRetTrCpp The taux ret tr cpp. |
||
| 6641 | * @return Etablissements Returns this Etablissements. |
||
| 6642 | */ |
||
| 6643 | public function setTauxRetTrCpp(?float $tauxRetTrCpp): Etablissements { |
||
| 6647 | |||
| 6648 | /** |
||
| 6649 | * Set the taux ret tr cps. |
||
| 6650 | * |
||
| 6651 | * @param float|null $tauxRetTrCps The taux ret tr cps. |
||
| 6652 | * @return Etablissements Returns this Etablissements. |
||
| 6653 | */ |
||
| 6654 | public function setTauxRetTrCps(?float $tauxRetTrCps): Etablissements { |
||
| 6658 | |||
| 6659 | /** |
||
| 6660 | * Set the taux ret tr dpp. |
||
| 6661 | * |
||
| 6662 | * @param float|null $tauxRetTrDpp The taux ret tr dpp. |
||
| 6663 | * @return Etablissements Returns this Etablissements. |
||
| 6664 | */ |
||
| 6665 | public function setTauxRetTrDpp(?float $tauxRetTrDpp): Etablissements { |
||
| 6669 | |||
| 6670 | /** |
||
| 6671 | * Set the taux ret tr dps. |
||
| 6672 | * |
||
| 6673 | * @param float|null $tauxRetTrDps The taux ret tr dps. |
||
| 6674 | * @return Etablissements Returns this Etablissements. |
||
| 6675 | */ |
||
| 6676 | public function setTauxRetTrDps(?float $tauxRetTrDps): Etablissements { |
||
| 6680 | |||
| 6681 | /** |
||
| 6682 | * Set the taux sup formation. |
||
| 6683 | * |
||
| 6684 | * @param float|null $tauxSupFormation The taux sup formation. |
||
| 6685 | * @return Etablissements Returns this Etablissements. |
||
| 6686 | */ |
||
| 6687 | public function setTauxSupFormation(?float $tauxSupFormation): Etablissements { |
||
| 6691 | |||
| 6692 | /** |
||
| 6693 | * Set the taux taxe apprenti. |
||
| 6694 | * |
||
| 6695 | * @param float|null $tauxTaxeApprenti The taux taxe apprenti. |
||
| 6696 | * @return Etablissements Returns this Etablissements. |
||
| 6697 | */ |
||
| 6698 | public function setTauxTaxeApprenti(?float $tauxTaxeApprenti): Etablissements { |
||
| 6702 | |||
| 6703 | /** |
||
| 6704 | * Set the taux transport. |
||
| 6705 | * |
||
| 6706 | * @param float|null $tauxTransport The taux transport. |
||
| 6707 | * @return Etablissements Returns this Etablissements. |
||
| 6708 | */ |
||
| 6709 | public function setTauxTransport(?float $tauxTransport): Etablissements { |
||
| 6713 | |||
| 6714 | /** |
||
| 6715 | * Set the tel. |
||
| 6716 | * |
||
| 6717 | * @param string|null $tel The tel. |
||
| 6718 | * @return Etablissements Returns this Etablissements. |
||
| 6719 | */ |
||
| 6720 | public function setTel(?string $tel): Etablissements { |
||
| 6724 | |||
| 6725 | /** |
||
| 6726 | * Set the tx sal decote. |
||
| 6727 | * |
||
| 6728 | * @param float|null $txSalDecote The tx sal decote. |
||
| 6729 | * @return Etablissements Returns this Etablissements. |
||
| 6730 | */ |
||
| 6731 | public function setTxSalDecote(?float $txSalDecote): Etablissements { |
||
| 6735 | |||
| 6736 | /** |
||
| 6737 | * Set the type base caisse1. |
||
| 6738 | * |
||
| 6739 | * @param string|null $typeBaseCaisse1 The type base caisse1. |
||
| 6740 | * @return Etablissements Returns this Etablissements. |
||
| 6741 | */ |
||
| 6742 | public function setTypeBaseCaisse1(?string $typeBaseCaisse1): Etablissements { |
||
| 6746 | |||
| 6747 | /** |
||
| 6748 | * Set the type base caisse2. |
||
| 6749 | * |
||
| 6750 | * @param string|null $typeBaseCaisse2 The type base caisse2. |
||
| 6751 | * @return Etablissements Returns this Etablissements. |
||
| 6752 | */ |
||
| 6753 | public function setTypeBaseCaisse2(?string $typeBaseCaisse2): Etablissements { |
||
| 6757 | |||
| 6758 | /** |
||
| 6759 | * Set the type base caisse3. |
||
| 6760 | * |
||
| 6761 | * @param string|null $typeBaseCaisse3 The type base caisse3. |
||
| 6762 | * @return Etablissements Returns this Etablissements. |
||
| 6763 | */ |
||
| 6764 | public function setTypeBaseCaisse3(?string $typeBaseCaisse3): Etablissements { |
||
| 6768 | |||
| 6769 | /** |
||
| 6770 | * Set the type bonif. |
||
| 6771 | * |
||
| 6772 | * @param string|null $typeBonif The type bonif. |
||
| 6773 | * @return Etablissements Returns this Etablissements. |
||
| 6774 | */ |
||
| 6775 | public function setTypeBonif(?string $typeBonif): Etablissements { |
||
| 6779 | |||
| 6780 | /** |
||
| 6781 | * Set the type domiciliation banque1. |
||
| 6782 | * |
||
| 6783 | * @param string|null $typeDomiciliationBanque1 The type domiciliation banque1. |
||
| 6784 | * @return Etablissements Returns this Etablissements. |
||
| 6785 | */ |
||
| 6786 | public function setTypeDomiciliationBanque1(?string $typeDomiciliationBanque1): Etablissements { |
||
| 6790 | |||
| 6791 | /** |
||
| 6792 | * Set the type domiciliation banque2. |
||
| 6793 | * |
||
| 6794 | * @param string|null $typeDomiciliationBanque2 The type domiciliation banque2. |
||
| 6795 | * @return Etablissements Returns this Etablissements. |
||
| 6796 | */ |
||
| 6797 | public function setTypeDomiciliationBanque2(?string $typeDomiciliationBanque2): Etablissements { |
||
| 6801 | |||
| 6802 | /** |
||
| 6803 | * Set the type domiciliation banque3. |
||
| 6804 | * |
||
| 6805 | * @param string|null $typeDomiciliationBanque3 The type domiciliation banque3. |
||
| 6806 | * @return Etablissements Returns this Etablissements. |
||
| 6807 | */ |
||
| 6808 | public function setTypeDomiciliationBanque3(?string $typeDomiciliationBanque3): Etablissements { |
||
| 6812 | |||
| 6813 | /** |
||
| 6814 | * Set the type effectif. |
||
| 6815 | * |
||
| 6816 | * @param string|null $typeEffectif The type effectif. |
||
| 6817 | * @return Etablissements Returns this Etablissements. |
||
| 6818 | */ |
||
| 6819 | public function setTypeEffectif(?string $typeEffectif): Etablissements { |
||
| 6823 | |||
| 6824 | /** |
||
| 6825 | * Set the type maintien salaire. |
||
| 6826 | * |
||
| 6827 | * @param string|null $typeMaintienSalaire The type maintien salaire. |
||
| 6828 | * @return Etablissements Returns this Etablissements. |
||
| 6829 | */ |
||
| 6830 | public function setTypeMaintienSalaire(?string $typeMaintienSalaire): Etablissements { |
||
| 6834 | |||
| 6835 | /** |
||
| 6836 | * Set the type publication. |
||
| 6837 | * |
||
| 6838 | * @param string|null $typePublication The type publication. |
||
| 6839 | * @return Etablissements Returns this Etablissements. |
||
| 6840 | */ |
||
| 6841 | public function setTypePublication(?string $typePublication): Etablissements { |
||
| 6845 | |||
| 6846 | /** |
||
| 6847 | * Set the type smic. |
||
| 6848 | * |
||
| 6849 | * @param string|null $typeSmic The type smic. |
||
| 6850 | * @return Etablissements Returns this Etablissements. |
||
| 6851 | */ |
||
| 6852 | public function setTypeSmic(?string $typeSmic): Etablissements { |
||
| 6856 | |||
| 6857 | /** |
||
| 6858 | * Set the type saisie ab cp. |
||
| 6859 | * |
||
| 6860 | * @param string|null $typeSaisieAbCp The type saisie ab cp. |
||
| 6861 | * @return Etablissements Returns this Etablissements. |
||
| 6862 | */ |
||
| 6863 | public function setTypeSaisieAbCp(?string $typeSaisieAbCp): Etablissements { |
||
| 6867 | |||
| 6868 | /** |
||
| 6869 | * Set the urssaf alsace. |
||
| 6870 | * |
||
| 6871 | * @param bool|null $urssafAlsace The urssaf alsace. |
||
| 6872 | * @return Etablissements Returns this Etablissements. |
||
| 6873 | */ |
||
| 6874 | public function setUrssafAlsace(?bool $urssafAlsace): Etablissements { |
||
| 6878 | |||
| 6879 | /** |
||
| 6880 | * Set the zone specif. |
||
| 6881 | * |
||
| 6882 | * @param string|null $zoneSpecif The zone specif. |
||
| 6883 | * @return Etablissements Returns this Etablissements. |
||
| 6884 | */ |
||
| 6885 | public function setZoneSpecif(?string $zoneSpecif): Etablissements { |
||
| 6889 | } |
||
| 6890 |