src/Entity/ReponseGrilleEvaluation.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ReponseGrilleEvaluationRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassReponseGrilleEvaluationRepository::class)]
  8. class ReponseGrilleEvaluation
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(nullabletrue)]
  15.     private ?string $tdr null;
  16.     #[ORM\Column(length255 ,  nullabletrue)]
  17.     private ?string $evaluation_reponse null;
  18.     #[ORM\Column(length2550 ,  nullabletrue)]
  19.     private ?string $comment_justif null;
  20.     #[ORM\Column(length2550,  nullabletrue)]
  21.     private ?string $comment_conseiller null;
  22.   
  23.     #[ORM\ManyToOne(inversedBy'reponseGrilleEvaluations')]
  24.     private ?RapportEvaluation $rapportEvaluation null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $decision null;
  27.     #[ORM\Column(length255)]
  28.     private ?int $module null;
  29.     public function __construct()
  30.     {
  31.     }
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getTdr(): ?string
  37.     {
  38.         return $this->tdr;
  39.     }
  40.     public function setTdr(?string $tdr): self
  41.     {
  42.         $this->tdr $tdr;
  43.         return $this;
  44.     }
  45.     public function getEvaluationReponse(): ?string
  46.     {
  47.         return $this->evaluation_reponse;
  48.     }
  49.     public function setEvaluationReponse(string $evaluation_reponse): self
  50.     {
  51.         $this->evaluation_reponse $evaluation_reponse;
  52.         return $this;
  53.     }
  54.     public function getCommentJustif(): ?string
  55.     {
  56.         return $this->comment_justif;
  57.     }
  58.     public function setCommentJustif(string $comment_justif): self
  59.     {
  60.         $this->comment_justif $comment_justif;
  61.         return $this;
  62.     }
  63.     public function getCommentConseiller(): ?string
  64.     {
  65.         return $this->comment_conseiller;
  66.     }
  67.     public function setCommentConseiller(string $comment_conseiller): self
  68.     {
  69.         $this->comment_conseiller $comment_conseiller;
  70.         return $this;
  71.     }
  72.     public function getRapportEvaluation(): ?RapportEvaluation
  73.     {
  74.         return $this->rapportEvaluation;
  75.     }
  76.     public function setRapportEvaluation(?RapportEvaluation $rapportEvaluation): self
  77.     {
  78.         $this->rapportEvaluation $rapportEvaluation;
  79.         return $this;
  80.     }
  81.     public function getDecision(): ?string
  82.     {
  83.         return $this->decision;
  84.     }
  85.     public function setDecision(?string $decision): self
  86.     {
  87.         $this->decision $decision;
  88.         return $this;
  89.     }
  90.     public function getModule(): ?int
  91.     {
  92.         return $this->module;
  93.     }
  94.     public function setModule(int $module): self
  95.     {
  96.         $this->module $module;
  97.         return $this;
  98.     }
  99.  
  100. }