<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use App\Repository\SystemeProductionRepository;
#[ORM\Entity(repositoryClass: SystemeProductionRepository::class)]
class SystemeProduction
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 100)]
private $libelle;
public function getId(): ?int
{
return $this->id;
}
public function getLibelle(): ?string
{
return $this->libelle;
}
public function setLibelle(string $libelle): self
{
$this->libelle = $libelle;
return $this;
}
}