src/Entity/PFcy.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PFcyRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPFcyRepository::class)]
  6. class PFcy
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $fcy0 null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $fcy0Libelle null;
  16.     public function getId(): ?int
  17.     {
  18.         return $this->id;
  19.     }
  20.     public function getFcy0(): ?string
  21.     {
  22.         return $this->fcy0;
  23.     }
  24.     public function setFcy0(?string $fcy0): static
  25.     {
  26.         $this->fcy0 $fcy0;
  27.         return $this;
  28.     }
  29.     public function getFcy0Libelle(): ?string
  30.     {
  31.         return $this->fcy0Libelle;
  32.     }
  33.     public function setFcy0Libelle(?string $fcy0Libelle): static
  34.     {
  35.         $this->fcy0Libelle $fcy0Libelle;
  36.         return $this;
  37.     }
  38. }