src/Entity/MainQuestionEs.php line 9

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