<?php
declare(strict_types=1);
/**
* @author Mehrez Labidi
*/
namespace App\Entity;
use App\Repository\TypeCertificationExpertRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* type_certification_expert table.
*
* @ORM\Entity(repositoryClass=TypeCertificationExpertRepository::class)
* @ORM\Table(name="fusacq_dbo.type_certification_expert")
*/
class TypeCertificationExpert
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id_type_certification;
/**
* @var string @ORM\Column(type="string", nullable=true, name="nom_certification", options={"default"= null})
*/
protected $nom_certification;
/**
* @var string @ORM\Column(type="string", nullable=true, name="nom_affichage_certification", options={"default"= null})
*/
protected $nom_affichage_certification;
/**
* @var string @ORM\Column(type="string", nullable=true, name="valeurs_imposees", options={"default"= null})
*/
protected $valeurs_imposees;
/**
* @var string @ORM\Column(type="string", nullable=true, name="nom_valeur", options={"default"= null})
*/
protected $nom_valeur;
/**
* @var string @ORM\Column(type="string", nullable=true, name="legende", options={"default"= null})
*/
protected $legende;
public function __get($property)
{
return $this->$property;
}
public function __set($property, $value)
{
$this->$property = $value;
}
}