<?php
namespace App\Entity;
use App\Repository\PFcyRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PFcyRepository::class)]
class PFcy
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $fcy0 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $fcy0Libelle = null;
public function getId(): ?int
{
return $this->id;
}
public function getFcy0(): ?string
{
return $this->fcy0;
}
public function setFcy0(?string $fcy0): static
{
$this->fcy0 = $fcy0;
return $this;
}
public function getFcy0Libelle(): ?string
{
return $this->fcy0Libelle;
}
public function setFcy0Libelle(?string $fcy0Libelle): static
{
$this->fcy0Libelle = $fcy0Libelle;
return $this;
}
}