<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: \App\Repository\MenuLibelleRepository::class)]
class MenuLibelle
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private int $id;
#[ORM\Column(type: 'integer', nullable: true)]
private ?int $ordre;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $libelle= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $kind= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $type_api= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $url= null;
public function getId(): ?int
{
return $this->id;
}
public function getOrdre(): ?int
{
return $this->ordre;
}
public function setOrdre(?int $ordre): self
{
$this->ordre = $ordre;
return $this;
}
public function getLibelle(): ?string
{
return $this->libelle;
}
public function setLibelle(?string $libelle): self
{
$this->libelle = $libelle;
return $this;
}
public function getKind(): ?string
{
return $this->kind;
}
public function setKind(?string $kind): self
{
$this->kind = $kind;
return $this;
}
public function getTypeApi(): ?string
{
return $this->type_api;
}
public function setTypeApi(?string $type_api): self
{
$this->type_api = $type_api;
return $this;
}
public function getUrl(): ?string
{
return $this->url;
}
public function setUrl(?string $url): self
{
$this->url = $url;
return $this;
}
}