src/Entity/Parametre.php line 9
<?phpnamespace App\Entity;use App\Repository\ParametreRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ParametreRepository::class)]class Parametre{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $type = null;#[ORM\Column(length: 255)]private ?string $code = null;#[ORM\Column(length: 255)]private ?string $libelle = null;#[ORM\Column(length: 255)]private ?string $z1 = null;#[ORM\Column(length: 255)]private ?string $z2 = null;public function getId(): ?int{return $this->id;}public function getType(): ?string{return $this->type;}public function setType(string $type): self{$this->type = $type;return $this;}public function getCode(): ?string{return $this->code;}public function setCode(string $code): self{$this->code = $code;return $this;}public function getLibelle(): ?string{return $this->libelle;}public function setLibelle(string $libelle): self{$this->libelle = $libelle;return $this;}public function getZ1(): ?string{return $this->z1;}public function setZ1(string $z1): self{$this->z1 = $z1;return $this;}public function getZ2(): ?string{return $this->z2;}public function setZ2(string $z2): self{$this->z2 = $z2;return $this;}}