src/Entity/LcontractFonction.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LcontractFonctionRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassLcontractFonctionRepository::class)]
  9. class LcontractFonction
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne]
  16.     private ?Pfonction $fonction_id null;
  17.     #[ORM\ManyToOne(inversedBy'lcontractFonctions')]
  18.     private ?LContract $contract_id null;
  19.     #[ORM\ManyToOne]
  20.     private ?Users $userDesactiver null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $dateDesactiver null;
  23.    
  24.   
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getFonctionId(): ?Pfonction
  30.     {
  31.         return $this->fonction_id;
  32.     }
  33.     public function setFonctionId(?Pfonction $fonction_id): self
  34.     {
  35.         $this->fonction_id $fonction_id;
  36.         return $this;
  37.     }
  38.    
  39.     
  40.     public function getContractId(): ?LContract
  41.     {
  42.         return $this->contract_id;
  43.     }
  44.     public function setContractId(?LContract $contract_id): self
  45.     {
  46.         $this->contract_id $contract_id;
  47.         return $this;
  48.     }
  49.     public function getUserDesactiver(): ?Users
  50.     {
  51.         return $this->userDesactiver;
  52.     }
  53.     public function setUserDesactiver(?Users $userDesactiver): static
  54.     {
  55.         $this->userDesactiver $userDesactiver;
  56.         return $this;
  57.     }
  58.     public function getDateDesactiver(): ?\DateTimeInterface
  59.     {
  60.         return $this->dateDesactiver;
  61.     }
  62.     public function setDateDesactiver(?\DateTimeInterface $dateDesactiver): static
  63.     {
  64.         $this->dateDesactiver $dateDesactiver;
  65.         return $this;
  66.     }
  67.    
  68. }