<?php
namespace App\Entity;
use App\Repository\MainQuestionEsRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: MainQuestionEsRepository::class)]
class MainQuestionEs
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 500)]
private ?string $content = null;
#[ORM\Column(length: 500, nullable: true)]
private ?string $firstcustomawnser = null;
#[ORM\Column(length: 500, nullable: true)]
private ?string $secondcustomawnser = null;
#[ORM\Column(length: 500, nullable: true)]
private ?string $thirdcustomawnser = null;
public function getId(): ?int
{
return $this->id;
}
public function getContent(): ?string
{
return $this->content;
}
public function setContent(string $content): self
{
$this->content = $content;
return $this;
}
public function getAvance(): ?string
{
return $this->avance;
}
public function setAvance(string $avance): self
{
$this->avance = $avance;
return $this;
}
public function getEncours(): ?string
{
return $this->encours;
}
public function setEncours(string $encours): self
{
$this->encours = $encours;
return $this;
}
public function getInitial(): ?string
{
return $this->initial;
}
public function setInitial(string $initial): self
{
$this->initial = $initial;
return $this;
}
public function getDimension(): ?string
{
return $this->dimension;
}
public function setDimension(string $dimension): self
{
$this->dimension = $dimension;
return $this;
}
public function getFirstcustomawnser(): ?string
{
return $this->firstcustomawnser;
}
public function setFirstcustomawnser(string $firstcustomawnser): self
{
$this->firstcustomawnser = $firstcustomawnser;
return $this;
}
public function getSecondcustomawnser(): ?string
{
return $this->secondcustomawnser;
}
public function setSecondcustomawnser(string $secondcustomawnser): self
{
$this->secondcustomawnser = $secondcustomawnser;
return $this;
}
public function getThirdcustomawnser(): ?string
{
return $this->thirdcustomawnser;
}
public function setThirdcustomawnser(?string $thirdcustomawnser): self
{
$this->thirdcustomawnser = $thirdcustomawnser;
return $this;
}
}