src/Entity/Statutimport.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * Statutimport
  6. *
  7. * @ORM\Table(name="STATUTIMPORT")
  8. * @ORM\Entity
  9. */
  10. class Statutimport
  11. {
  12. /**
  13. * @var int
  14. *
  15. * @ORM\Column(name="idstatutimport", type="integer", nullable=false)
  16. * @ORM\Id
  17. * @ORM\GeneratedValue(strategy="IDENTITY")
  18. */
  19. private $idstatutimport;
  20. /**
  21. * @var string
  22. *
  23. * @ORM\Column(name="libellestatutimport", type="string", length=255, nullable=false)
  24. */
  25. private $libellestatutimport;
  26. public function getIdstatutimport(): ?int
  27. {
  28. return $this->idstatutimport;
  29. }
  30. public function getLibellestatutimport(): ?string
  31. {
  32. return $this->libellestatutimport;
  33. }
  34. public function setLibellestatutimport(string $libellestatutimport): static
  35. {
  36. $this->libellestatutimport = $libellestatutimport;
  37. return $this;
  38. }
  39. }