<?phpnamespace App\Entity;use App\Repository\ReponseGrilleEvaluationRepository;use Doctrine\Common\Collections\ArrayCollection;use Doctrine\Common\Collections\Collection;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ReponseGrilleEvaluationRepository::class)]class ReponseGrilleEvaluation{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(nullable: true)] private ?string $tdr = null; #[ORM\Column(length: 255 , nullable: true)] private ?string $evaluation_reponse = null; #[ORM\Column(length: 2550 , nullable: true)] private ?string $comment_justif = null; #[ORM\Column(length: 2550, nullable: true)] private ?string $comment_conseiller = null; #[ORM\ManyToOne(inversedBy: 'reponseGrilleEvaluations')] private ?RapportEvaluation $rapportEvaluation = null; #[ORM\Column(length: 255, nullable: true)] private ?string $decision = null; #[ORM\Column(length: 255)] private ?int $module = null; public function __construct() { } public function getId(): ?int { return $this->id; } public function getTdr(): ?string { return $this->tdr; } public function setTdr(?string $tdr): self { $this->tdr = $tdr; return $this; } public function getEvaluationReponse(): ?string { return $this->evaluation_reponse; } public function setEvaluationReponse(string $evaluation_reponse): self { $this->evaluation_reponse = $evaluation_reponse; return $this; } public function getCommentJustif(): ?string { return $this->comment_justif; } public function setCommentJustif(string $comment_justif): self { $this->comment_justif = $comment_justif; return $this; } public function getCommentConseiller(): ?string { return $this->comment_conseiller; } public function setCommentConseiller(string $comment_conseiller): self { $this->comment_conseiller = $comment_conseiller; return $this; } public function getRapportEvaluation(): ?RapportEvaluation { return $this->rapportEvaluation; } public function setRapportEvaluation(?RapportEvaluation $rapportEvaluation): self { $this->rapportEvaluation = $rapportEvaluation; return $this; } public function getDecision(): ?string { return $this->decision; } public function setDecision(?string $decision): self { $this->decision = $decision; return $this; } public function getModule(): ?int { return $this->module; } public function setModule(int $module): self { $this->module = $module; return $this; } }