<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\PaysRepository")
* @ORM\Table(name="pays")
*/
class Pays
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $paysid;
/**
* @ORM\Column(type="string", length=255)
*/
public $libelle;
/**
* @ORM\Column(type="string", length=255)
*/
public $libelle_fr;
/**
* @ORM\Column(type="boolean")
*/
public $europe;
public function setPaysid(string $paysid): self {
$this->paysid = $paysid;
return $this;
}
public function getPaysid(): ?string {
return $this->paysid;
}
public function setLibelle(string $libelle): self {
$this->libelle = $libelle;
return $this;
}
public function getLibelle(): ?string {
return $this->libelle;
}
public function setLibelleFR(string $libelle_fr): self {
$this->libelle_fr = $libelle_fr;
return $this;
}
public function getLibelleFR(): ?string {
return $this->libelle_fr;
}
public function setEurope(string $europe): self {
$this->europe = $europe;
return $this;
}
public function getEurope(): ?string {
return $this->europe;
}
}