src/Entity/TypeCertificationExpert.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4.  * @author Mehrez Labidi
  5.  */
  6. namespace App\Entity;
  7. use App\Repository\TypeCertificationExpertRepository;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * type_certification_expert table.
  11.  *
  12.  * @ORM\Entity(repositoryClass=TypeCertificationExpertRepository::class)
  13.  * @ORM\Table(name="fusacq_dbo.type_certification_expert")
  14.  */
  15. class TypeCertificationExpert
  16. {
  17.     /**
  18.      * @var int @ORM\Id
  19.      * @ORM\Column(type="integer")
  20.      * @ORM\GeneratedValue(strategy="AUTO")
  21.      */
  22.     protected $id_type_certification;
  23.     /**
  24.      * @var string @ORM\Column(type="string", nullable=true, name="nom_certification", options={"default"= null})
  25.      */
  26.     protected $nom_certification;
  27.     /**
  28.      * @var string @ORM\Column(type="string", nullable=true, name="nom_affichage_certification", options={"default"= null})
  29.      */
  30.     protected $nom_affichage_certification;
  31.     /**
  32.      * @var string @ORM\Column(type="string", nullable=true, name="valeurs_imposees", options={"default"= null})
  33.      */
  34.     protected $valeurs_imposees;
  35.     /**
  36.      * @var string @ORM\Column(type="string", nullable=true, name="nom_valeur", options={"default"= null})
  37.      */
  38.     protected $nom_valeur;
  39.     /**
  40.      * @var string @ORM\Column(type="string", nullable=true, name="legende", options={"default"= null})
  41.      */
  42.     protected $legende;
  43.     public function __get($property)
  44.     {
  45.         return $this->$property;
  46.     }
  47.     public function __set($property$value)
  48.     {
  49.         $this->$property $value;
  50.     }
  51. }