<?php
declare(strict_types=1);
/**
* @author Mehrez Labidi
*/
namespace App\Entity;
use App\Repository\ReponsesQuestionSemaineRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ReponsesQuestionSemaineRepository::class)
* @ORM\Table(name="fusacq_dbo.reponses_questions_semaine")
*/
class ReponsesQuestionSemaine
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer", name="id_reponse")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="QuestionsSemaine" ,cascade={"persist"})
* @ORM\JoinColumn(name="id_question", referencedColumnName="id_question", onDelete="CASCADE")
*/
protected $id_question;
/**
* @var string @ORM\Column(type="string", nullable=true, name="reponse", options={"default"= null})
*/
protected $reponse;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses", options={"default"= null})
*/
protected $nb_reponses;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2008", options={"default"= null})
*/
protected $nb_reponses_2008;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2009", options={"default"= null})
*/
protected $nb_reponses_2009;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2010", options={"default"= null})
*/
protected $nb_reponses_2010;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2011", options={"default"= null})
*/
protected $nb_reponses_2011;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2012", options={"default"= null})
*/
protected $nb_reponses_2012;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2013", options={"default"= null})
*/
protected $nb_reponses_2013;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2014", options={"default"= null})
*/
protected $nb_reponses_2014;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2015", options={"default"= null})
*/
protected $nb_reponses_2015;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2016", options={"default"= null})
*/
protected $nb_reponses_2016;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2017", options={"default"= null})
*/
protected $nb_reponses_2017;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2018", options={"default"= null})
*/
protected $nb_reponses_2018;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2019", options={"default"= null})
*/
protected $nb_reponses_2019;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2020", options={"default"= null})
*/
protected $nb_reponses_2020;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2021", options={"default"= null})
*/
protected $nb_reponses_2021;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2022", options={"default"= null})
*/
protected $nb_reponses_2022;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2023", options={"default"= null})
*/
protected $nb_reponses_2023;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2024", options={"default"= null})
*/
protected $nb_reponses_2024;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2025", options={"default"= null})
*/
protected $nb_reponses_2025;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2026", options={"default"= null})
*/
protected $nb_reponses_2026;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2027", options={"default"= null})
*/
protected $nb_reponses_2027;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2028", options={"default"= null})
*/
protected $nb_reponses_2028;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2029", options={"default"= null})
*/
protected $nb_reponses_2029;
/**
* @var int
* @ORM\Column(type="integer", nullable=true, name="nb_reponses_2030", options={"default"= null})
*/
protected $nb_reponses_2030;
public function __get($property)
{
return $this->$property;
}
public function __set($property, $value)
{
$this->$property = $value;
}
}