<?php
declare(strict_types=1);
/**
* @author Raymond
*/
namespace App\Entity;
use App\Repository\StatutsRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=StatutsRepository::class)
* @ORM\Table(name="fusacq_dbo.statuts")
*/
class Statuts
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer",name="id_statut")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id_statut;
/**
* @var string @ORM\Column(type="string", nullable=true, name="nom_statut", options={"default"= null})
*/
protected $nom_statut;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_pays", options={"default"= null})
*/
protected $id_pays;
/**
* Magic getter to expose protected properties.
*
* @param string $property
*
* @return mixed
*/
public function _get($property)
{
return $this->$property;
}
/**
* Magic setter to save protected properties.
*
* @param string $property
* @param mixed $value
*/
public function _set($property, $value)
{
$this->$property = $value;
}
}