src/Entity/PemployeDocument.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PemployeDocumentRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPemployeDocumentRepository::class)]
  6. class PemployeDocument
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\OneToOne(inversedBy'document'cascade: ['persist''remove'])]
  13.     private ?Pemploye $employe null;
  14.     #[ORM\Column(nullabletrue)]
  15.     private ?bool $cin null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $cinPath null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?bool $acteNaissance null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $acteNaissancePath null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $formulaire null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $formulairePath null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?bool $contrat null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $contratPath null;
  30.     #[ORM\Column]
  31.     private ?bool $dossierMedical null;
  32.     #[ORM\Column(length255nullabletrue)]
  33.     private ?string $dossierMedicalPath null;
  34.     #[ORM\Column(nullabletrue)]
  35.     private ?bool $bac null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $bacPath null;
  38.     #[ORM\Column(nullabletrue)]
  39.     private ?bool $diplome null;
  40.     #[ORM\Column(length255nullabletrue)]
  41.     private ?string $diplomePath null;
  42.     #[ORM\Column(nullabletrue)]
  43.     private ?bool $cv null;
  44.     #[ORM\Column(length255nullabletrue)]
  45.     private ?string $cvPath null;
  46.     #[ORM\Column(nullabletrue)]
  47.     private ?bool $rib null;
  48.     #[ORM\Column(length255nullabletrue)]
  49.     private ?string $ribPath null;
  50.     #[ORM\Column(nullabletrue)]
  51.     private ?bool $ficheAnthropometrique null;
  52.     #[ORM\Column(length255nullabletrue)]
  53.     private ?string $ficheAnthropometriquePath null;
  54.     #[ORM\Column(nullabletrue)]
  55.     private ?bool $photo null;
  56.     #[ORM\Column(length255nullabletrue)]
  57.     private ?string $photoPath null;
  58.     #[ORM\Column(nullabletrue)]
  59.     private ?bool $emprunte null;
  60.     #[ORM\Column(length255nullabletrue)]
  61.     private ?string $empruntePath null;
  62.     #[ORM\Column(nullabletrue)]
  63.     private ?bool $acteMariage null;
  64.     #[ORM\Column(length255nullabletrue)]
  65.     private ?string $acteMariagePath null;
  66.     #[ORM\Column(nullabletrue)]
  67.     private ?bool $cinConjoint null;
  68.     #[ORM\Column(length255nullabletrue)]
  69.     private ?string $cinConjointPath null;
  70.     #[ORM\Column(nullabletrue)]
  71.     private ?bool $acteNaissanceEnfants null;
  72.     #[ORM\Column(length255nullabletrue)]
  73.     private ?string $acteNaissanceEnfantsPath null;
  74.     #[ORM\Column(nullabletrue)]
  75.     private ?bool $cinEnfants null;
  76.     #[ORM\Column(length255nullabletrue)]
  77.     private ?string $cinEnfantsPath null;
  78.     #[ORM\Column(nullabletrue)]
  79.     private ?bool $cinParents null;
  80.     #[ORM\Column(length255nullabletrue)]
  81.     private ?string $cinParentsPath null;
  82.     public function getId(): ?int
  83.     {
  84.         return $this->id;
  85.     }
  86.     public function getEmploye(): ?Pemploye
  87.     {
  88.         return $this->employe;
  89.     }
  90.     public function setEmploye(?Pemploye $employe): static
  91.     {
  92.         $this->employe $employe;
  93.         return $this;
  94.     }
  95.     public function isCin(): ?bool
  96.     {
  97.         return $this->cin;
  98.     }
  99.     public function setCin(?bool $cin): static
  100.     {
  101.         $this->cin $cin;
  102.         return $this;
  103.     }
  104.     public function getCinPath(): ?string
  105.     {
  106.         return $this->cinPath;
  107.     }
  108.     public function setCinPath(?string $cinPath): static
  109.     {
  110.         $this->cinPath $cinPath;
  111.         return $this;
  112.     }
  113.     public function isActeNaissance(): ?bool
  114.     {
  115.         return $this->acteNaissance;
  116.     }
  117.     public function setActeNaissance(?bool $acteNaissance): static
  118.     {
  119.         $this->acteNaissance $acteNaissance;
  120.         return $this;
  121.     }
  122.     public function getActeNaissancePath(): ?string
  123.     {
  124.         return $this->acteNaissancePath;
  125.     }
  126.     public function setActeNaissancePath(?string $acteNaissancePath): static
  127.     {
  128.         $this->acteNaissancePath $acteNaissancePath;
  129.         return $this;
  130.     }
  131.     public function isFormulaire(): ?bool
  132.     {
  133.         return $this->formulaire;
  134.     }
  135.     public function setFormulaire(?bool $formulaire): static
  136.     {
  137.         $this->formulaire $formulaire;
  138.         return $this;
  139.     }
  140.     public function getFormulairePath(): ?string
  141.     {
  142.         return $this->formulairePath;
  143.     }
  144.     public function setFormulairePath(?string $formulairePath): static
  145.     {
  146.         $this->formulairePath $formulairePath;
  147.         return $this;
  148.     }
  149.     public function isContrat(): ?bool
  150.     {
  151.         return $this->contrat;
  152.     }
  153.     public function setContrat(?bool $contrat): static
  154.     {
  155.         $this->contrat $contrat;
  156.         return $this;
  157.     }
  158.     public function getContratPath(): ?string
  159.     {
  160.         return $this->contratPath;
  161.     }
  162.     public function setContratPath(?string $contratPath): static
  163.     {
  164.         $this->contratPath $contratPath;
  165.         return $this;
  166.     }
  167.     public function isDossierMedical(): ?bool
  168.     {
  169.         return $this->dossierMedical;
  170.     }
  171.     public function setDossierMedical(bool $dossierMedical): static
  172.     {
  173.         $this->dossierMedical $dossierMedical;
  174.         return $this;
  175.     }
  176.     public function getDossierMedicalPath(): ?string
  177.     {
  178.         return $this->dossierMedicalPath;
  179.     }
  180.     public function setDossierMedicalPath(?string $dossierMedicalPath): static
  181.     {
  182.         $this->dossierMedicalPath $dossierMedicalPath;
  183.         return $this;
  184.     }
  185.     public function isBac(): ?bool
  186.     {
  187.         return $this->bac;
  188.     }
  189.     public function setBac(?bool $bac): static
  190.     {
  191.         $this->bac $bac;
  192.         return $this;
  193.     }
  194.     public function getBacPath(): ?string
  195.     {
  196.         return $this->bacPath;
  197.     }
  198.     public function setBacPath(?string $bacPath): static
  199.     {
  200.         $this->bacPath $bacPath;
  201.         return $this;
  202.     }
  203.     public function isDiplome(): ?bool
  204.     {
  205.         return $this->diplome;
  206.     }
  207.     public function setDiplome(?bool $diplome): static
  208.     {
  209.         $this->diplome $diplome;
  210.         return $this;
  211.     }
  212.     public function getDiplomePath(): ?string
  213.     {
  214.         return $this->diplomePath;
  215.     }
  216.     public function setDiplomePath(?string $diplomePath): static
  217.     {
  218.         $this->diplomePath $diplomePath;
  219.         return $this;
  220.     }
  221.     public function isCv(): ?bool
  222.     {
  223.         return $this->cv;
  224.     }
  225.     public function setCv(?bool $cv): static
  226.     {
  227.         $this->cv $cv;
  228.         return $this;
  229.     }
  230.     public function getCvPath(): ?string
  231.     {
  232.         return $this->cvPath;
  233.     }
  234.     public function setCvPath(?string $cvPath): static
  235.     {
  236.         $this->cvPath $cvPath;
  237.         return $this;
  238.     }
  239.     public function isRib(): ?bool
  240.     {
  241.         return $this->rib;
  242.     }
  243.     public function setRib(?bool $rib): static
  244.     {
  245.         $this->rib $rib;
  246.         return $this;
  247.     }
  248.     public function getRibPath(): ?string
  249.     {
  250.         return $this->ribPath;
  251.     }
  252.     public function setRibPath(?string $ribPath): static
  253.     {
  254.         $this->ribPath $ribPath;
  255.         return $this;
  256.     }
  257.     public function isFicheAnthropometrique(): ?bool
  258.     {
  259.         return $this->ficheAnthropometrique;
  260.     }
  261.     public function setFicheAnthropometrique(?bool $ficheAnthropometrique): static
  262.     {
  263.         $this->ficheAnthropometrique $ficheAnthropometrique;
  264.         return $this;
  265.     }
  266.     public function getFicheAnthropometriquePath(): ?string
  267.     {
  268.         return $this->ficheAnthropometriquePath;
  269.     }
  270.     public function setFicheAnthropometriquePath(?string $ficheAnthropometriquePath): static
  271.     {
  272.         $this->ficheAnthropometriquePath $ficheAnthropometriquePath;
  273.         return $this;
  274.     }
  275.     public function isPhoto(): ?bool
  276.     {
  277.         return $this->photo;
  278.     }
  279.     public function setPhoto(?bool $photo): static
  280.     {
  281.         $this->photo $photo;
  282.         return $this;
  283.     }
  284.     public function getPhotoPath(): ?string
  285.     {
  286.         return $this->photoPath;
  287.     }
  288.     public function setPhotoPath(?string $photoPath): static
  289.     {
  290.         $this->photoPath $photoPath;
  291.         return $this;
  292.     }
  293.     public function isEmprunte(): ?bool
  294.     {
  295.         return $this->emprunte;
  296.     }
  297.     public function setEmprunte(?bool $emprunte): static
  298.     {
  299.         $this->emprunte $emprunte;
  300.         return $this;
  301.     }
  302.     public function getEmpruntePath(): ?string
  303.     {
  304.         return $this->empruntePath;
  305.     }
  306.     public function setEmpruntePath(?string $empruntePath): static
  307.     {
  308.         $this->empruntePath $empruntePath;
  309.         return $this;
  310.     }
  311.     public function isActeMariage(): ?bool
  312.     {
  313.         return $this->acteMariage;
  314.     }
  315.     public function setActeMariage(?bool $acteMariage): static
  316.     {
  317.         $this->acteMariage $acteMariage;
  318.         return $this;
  319.     }
  320.     public function getActeMariagePath(): ?string
  321.     {
  322.         return $this->acteMariagePath;
  323.     }
  324.     public function setActeMariagePath(?string $acteMariagePath): static
  325.     {
  326.         $this->acteMariagePath $acteMariagePath;
  327.         return $this;
  328.     }
  329.     public function isCinConjoint(): ?bool
  330.     {
  331.         return $this->cinConjoint;
  332.     }
  333.     public function setCinConjoint(?bool $cinConjoint): static
  334.     {
  335.         $this->cinConjoint $cinConjoint;
  336.         return $this;
  337.     }
  338.     public function getCinConjointPath(): ?string
  339.     {
  340.         return $this->cinConjointPath;
  341.     }
  342.     public function setCinConjointPath(?string $cinConjointPath): static
  343.     {
  344.         $this->cinConjointPath $cinConjointPath;
  345.         return $this;
  346.     }
  347.     public function isActeNaissanceEnfants(): ?bool
  348.     {
  349.         return $this->acteNaissanceEnfants;
  350.     }
  351.     public function setActeNaissanceEnfants(?bool $acteNaissanceEnfants): static
  352.     {
  353.         $this->acteNaissanceEnfants $acteNaissanceEnfants;
  354.         return $this;
  355.     }
  356.     public function getActeNaissanceEnfantsPath(): ?string
  357.     {
  358.         return $this->acteNaissanceEnfantsPath;
  359.     }
  360.     public function setActeNaissanceEnfantsPath(?string $acteNaissanceEnfantsPath): static
  361.     {
  362.         $this->acteNaissanceEnfantsPath $acteNaissanceEnfantsPath;
  363.         return $this;
  364.     }
  365.     public function isCinEnfants(): ?bool
  366.     {
  367.         return $this->cinEnfants;
  368.     }
  369.     public function setCinEnfants(?bool $cinEnfants): static
  370.     {
  371.         $this->cinEnfants $cinEnfants;
  372.         return $this;
  373.     }
  374.     public function getCinEnfantsPath(): ?string
  375.     {
  376.         return $this->cinEnfantsPath;
  377.     }
  378.     public function setCinEnfantsPath(?string $cinEnfantsPath): static
  379.     {
  380.         $this->cinEnfantsPath $cinEnfantsPath;
  381.         return $this;
  382.     }
  383.     public function isCinParents(): ?bool
  384.     {
  385.         return $this->cinParents;
  386.     }
  387.     public function setCinParents(?bool $cinParents): static
  388.     {
  389.         $this->cinParents $cinParents;
  390.         return $this;
  391.     }
  392.     public function getCinParentsPath(): ?string
  393.     {
  394.         return $this->cinParentsPath;
  395.     }
  396.     public function setCinParentsPath(?string $cinParentsPath): static
  397.     {
  398.         $this->cinParentsPath $cinParentsPath;
  399.         return $this;
  400.     }
  401. }