src/Entity/QuestionsFrequentes.php line 13

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace App\Entity;
  3. /**
  4.  * @author Mehrez Labidi
  5.  */
  6. use App\Repository\QuestionsFrequentesRepository;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=QuestionsFrequentesRepository::class)
  10.  * @ORM\Table(name="fusacq_dbo.questions_frequentes")
  11.  */
  12. class  QuestionsFrequentes
  13. {
  14.     /**
  15.      * @var int @ORM\Id
  16.      * @ORM\Column(type="integer",name="id" )
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     protected $id;
  20.     /**
  21.      * @var string @ORM\Column(type="string",  nullable=true, name="question"  )
  22.      */
  23.     protected $question;
  24.     /**
  25.      * @var string @ORM\Column(type="string",  nullable=true, name="reponse"  )
  26.      */
  27.     protected $reponse;
  28.     /**
  29.      * @var string @ORM\Column(type="integer", nullable=true, name="position"  )
  30.      */
  31.     protected $position;
  32.     public function __construct()
  33.     {
  34.     }
  35.     public function _get($property)
  36.     {
  37.         return $this->$property;
  38.     }
  39.     public function _set($property$value)
  40.     {
  41.         $this->$property $value;
  42.     }
  43. }