<?php
declare(strict_types=1);
/**
* @author Mehrez Labidi
*/
namespace App\Entity;
use App\Repository\CertificationExpertRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=CertificationExpertRepository::class)
* @ORM\Table(name="fusacq_dbo.certification_expert")
*/
class CertificationExpert
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer",nullable=false,name="id_certification_expert")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id_certification_expert;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_societe_prestataire", options={"default"= null})
*/
protected $id_societe_prestataire;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_type_certification", options={"default"= null})
*/
protected $id_type_certification;
/**
* @var string @ORM\Column(type="string", nullable=true, name="valeur_certification", options={"default"= null})
*/
protected $valeur_certification;
public function _get($property)
{
return $this->$property;
}
public function _set($property, $value)
{
$this->$property = $value;
}
public function __construct()
{
}
}