src/Entity/CertificationExpert.php line 16

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\CertificationExpertRepository;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * @ORM\Entity(repositoryClass=CertificationExpertRepository::class)
  11.  * @ORM\Table(name="fusacq_dbo.certification_expert")
  12.  */
  13. class CertificationExpert
  14. {
  15.     /**
  16.      * @var int @ORM\Id
  17.      * @ORM\Column(type="integer",nullable=false,name="id_certification_expert")
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     protected $id_certification_expert;
  21.     /**
  22.      * @var string @ORM\Column(type="integer", nullable=true, name="id_societe_prestataire", options={"default"= null})
  23.      */
  24.     protected $id_societe_prestataire;
  25.     /**
  26.      * @var string @ORM\Column(type="integer", nullable=true, name="id_type_certification", options={"default"= null})
  27.      */
  28.     protected $id_type_certification;
  29.     /**
  30.      * @var string @ORM\Column(type="string", nullable=true, name="valeur_certification", options={"default"= null})
  31.      */
  32.     protected $valeur_certification;
  33.     public function _get($property)
  34.     {
  35.         return $this->$property;
  36.     }
  37.     public function _set($property$value)
  38.     {
  39.         $this->$property $value;
  40.     }
  41.       public function __construct()
  42.     {
  43.          
  44.     }
  45. }