<?php
namespace App\Entity;
use App\Repository\LdvStatutProjetRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=LdvStatutProjetRepository::class)
*/
class LdvStatutProjet
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $lib_statut;
public function getId(): ?int
{
return $this->id;
}
public function getLibStatut(): ?string
{
return $this->lib_statut;
}
public function setLibStatut(string $lib_statut): self
{
$this->lib_statut = $lib_statut;
return $this;
}
}