<?php
declare(strict_types=1);
/**
* @author Mehrez Labidi
*/
namespace App\Entity;
use App\Repository\LocalisationsPrestataireRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=LocalisationsPrestataireRepository::class)
* @ORM\Table(name="localisations_prestataire")
*/
class LocalisationsPrestataire
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id_localisation_prestataire;
/**
* @var string @ORM\Column(type="string", nullable=true, name="id_localisation_pere", options={"default"= null})
*/
protected $id_localisation_pere;
/**
* @var string @ORM\Column(type="string", nullable=true, name="nom_localisation", options={"default"= null})
*/
protected $nom_localisation;
/**
* @var string @ORM\Column(type="string", nullable=true, name="code_insee", options={"default"= null})
*/
protected $code_insee;
/**
* @var string @ORM\Column(type="string", nullable=true, name="nom_langue", options={"default"= null})
*/
protected $nom_langue;
/**
* @var string @ORM\Column(type="string", nullable=true, name="taux_tva", options={"default"= null})
*/
protected $taux_tva;
/**
* @var string @ORM\Column(type="string", nullable=true, name="recherche", options={"default"= null})
*/
protected $recherche;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="type_localisation", options={"default"= null})
*/
protected $type_localisation;
public function __get($property)
{
return $this->$property;
}
public function __set($property, $value)
{
$this->$property = $value;
}
}