<?php declare(strict_types=1);
namespace App\Entity;
/**
* @author Mehrez Labidi
*/
use App\Repository\QuestionsFrequentesRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=QuestionsFrequentesRepository::class)
* @ORM\Table(name="fusacq_dbo.questions_frequentes")
*/
class QuestionsFrequentes
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer",name="id" )
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @var string @ORM\Column(type="string", nullable=true, name="question" )
*/
protected $question;
/**
* @var string @ORM\Column(type="string", nullable=true, name="reponse" )
*/
protected $reponse;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="position" )
*/
protected $position;
public function __construct()
{
}
public function _get($property)
{
return $this->$property;
}
public function _set($property, $value)
{
$this->$property = $value;
}
}