src/Entity/MenuLibelle.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. #[ORM\Entity(repositoryClass\App\Repository\MenuLibelleRepository::class)]
  5. class MenuLibelle
  6. {
  7.     #[ORM\Id]
  8.     #[ORM\GeneratedValue]
  9.     #[ORM\Column(type'integer')]
  10.     private int $id;
  11.     #[ORM\Column(type'integer'nullabletrue)]
  12.     private ?int $ordre;
  13.     #[ORM\Column(type'string'length255nullabletrue)]
  14.     private ?string $libellenull;
  15.     #[ORM\Column(type'string'length255nullabletrue)]
  16.     private ?string $kindnull;
  17.     #[ORM\Column(type'string'length255nullabletrue)]
  18.     private ?string $type_apinull;
  19.     #[ORM\Column(type'string'length255nullabletrue)]
  20.     private ?string $urlnull;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getOrdre(): ?int
  26.     {
  27.         return $this->ordre;
  28.     }
  29.     public function setOrdre(?int $ordre): self
  30.     {
  31.         $this->ordre $ordre;
  32.         return $this;
  33.     }
  34.     public function getLibelle(): ?string
  35.     {
  36.         return $this->libelle;
  37.     }
  38.     public function setLibelle(?string $libelle): self
  39.     {
  40.         $this->libelle $libelle;
  41.         return $this;
  42.     }
  43.     public function getKind(): ?string
  44.     {
  45.         return $this->kind;
  46.     }
  47.     public function setKind(?string $kind): self
  48.     {
  49.         $this->kind $kind;
  50.         return $this;
  51.     }
  52.     public function getTypeApi(): ?string
  53.     {
  54.         return $this->type_api;
  55.     }
  56.     public function setTypeApi(?string $type_api): self
  57.     {
  58.         $this->type_api $type_api;
  59.         return $this;
  60.     }
  61.     public function getUrl(): ?string
  62.     {
  63.         return $this->url;
  64.     }
  65.     public function setUrl(?string $url): self
  66.     {
  67.         $this->url $url;
  68.         return $this;
  69.     }
  70. }