src/Entity/ThirdQuestionListPr.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ThirdQuestionListPrRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassThirdQuestionListPrRepository::class)]
  6. class ThirdQuestionListPr
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length500)]
  13.     private ?string $content null;
  14.     #[ORM\Column(length500)]
  15.     private ?string $avance null;
  16.     #[ORM\Column(length500)]
  17.     private ?string $encours null;
  18.     #[ORM\Column(length500)]
  19.     private ?string $initial null;
  20.     #[ORM\Column(length500)]
  21.     private ?string $dimension null;
  22.     #[ORM\Column(length500nullabletrue)]
  23.     private ?string $firstcustomawnser null;
  24.     #[ORM\Column(length500nullabletrue)]
  25.     private ?string $secondcustomawnser null;
  26.     #[ORM\Column(length500nullabletrue)]
  27.     private ?string $thirdcustomawnser null;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getContent(): ?string
  33.     {
  34.         return $this->content;
  35.     }
  36.     public function setContent(string $content): self
  37.     {
  38.         $this->content $content;
  39.         return $this;
  40.     }
  41.     public function getAvance(): ?string
  42.     {
  43.         return $this->avance;
  44.     }
  45.     public function setAvance(string $avance): self
  46.     {
  47.         $this->avance $avance;
  48.         return $this;
  49.     }
  50.     public function getEncours(): ?string
  51.     {
  52.         return $this->encours;
  53.     }
  54.     public function setEncours(string $encours): self
  55.     {
  56.         $this->encours $encours;
  57.         return $this;
  58.     }
  59.     public function getInitial(): ?string
  60.     {
  61.         return $this->initial;
  62.     }
  63.     public function setInitial(string $initial): self
  64.     {
  65.         $this->initial $initial;
  66.         return $this;
  67.     }
  68.     public function getDimension(): ?string
  69.     {
  70.         return $this->dimension;
  71.     }
  72.     public function setDimension(string $dimension): self
  73.     {
  74.         $this->dimension $dimension;
  75.         return $this;
  76.     }
  77.     public function getFirstcustomawnser(): ?string
  78.     {
  79.         return $this->firstcustomawnser;
  80.     }
  81.     public function setFirstcustomawnser(?string $firstcustomawnser): self
  82.     {
  83.         $this->firstcustomawnser $firstcustomawnser;
  84.         return $this;
  85.     }
  86.     public function getSecondcustomawnser(): ?string
  87.     {
  88.         return $this->secondcustomawnser;
  89.     }
  90.     public function setSecondcustomawnser(?string $secondcustomawnser): self
  91.     {
  92.         $this->secondcustomawnser $secondcustomawnser;
  93.         return $this;
  94.     }
  95.     public function getThirdcustomawnser(): ?string
  96.     {
  97.         return $this->thirdcustomawnser;
  98.     }
  99.     public function setThirdcustomawnser(?string $thirdcustomawnser): self
  100.     {
  101.         $this->thirdcustomawnser $thirdcustomawnser;
  102.         return $this;
  103.     }
  104. }