<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Statutimport
*
* @ORM\Table(name="STATUTIMPORT")
* @ORM\Entity
*/
class Statutimport
{
/**
* @var int
*
* @ORM\Column(name="idstatutimport", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idstatutimport;
/**
* @var string
*
* @ORM\Column(name="libellestatutimport", type="string", length=255, nullable=false)
*/
private $libellestatutimport;
public function getIdstatutimport(): ?int
{
return $this->idstatutimport;
}
public function getLibellestatutimport(): ?string
{
return $this->libellestatutimport;
}
public function setLibellestatutimport(string $libellestatutimport): static
{
$this->libellestatutimport = $libellestatutimport;
return $this;
}
}