src/Entity/Plainte.php line 13
<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;/*** Plainte** @ORM\Table(name="plainte")* @ORM\Entity*/class Plainte{/*** @var int** @ORM\Column(name="id", type="integer", nullable=false)* @ORM\Id* @ORM\GeneratedValue(strategy="IDENTITY")*/private $id;/*** @var int** @ORM\Column(name="telephone", type="integer", nullable=false)*/private $telephone;/*** @var string** @ORM\Column(name="motif", type="string", length=255, nullable=false)*/private $motif;/*** @var string** @ORM\Column(name="description", type="string", length=255, nullable=false)*/private $description;/*** @var datetime_immutable** @ORM\Column(name="created_at", type="datetime_immutable", nullable=false)*/private $createdAt;/*** @var datetime_immutable** @ORM\Column(name="delete_at", type="datetime_immutable", nullable=true)*/private $deleteAt;/*** @var int** @ORM\Column(name="statut", type="integer", nullable=false)*/private $statut;/*** @var string** @ORM\Column(name="nom", type="string", length=255, nullable=false)*/private $nom;/*** @var string** @ORM\Column(name="prenom", type="string", length=255, nullable=false)*/private $prenom;public function getId(): ?int{return $this->id;}public function getTelephone(): ?int{return $this->telephone;}public function setTelephone(int $telephone): self{$this->telephone = $telephone;return $this;}public function getMotif(): ?string{return $this->motif;}public function setMotif(string $motif): self{$this->motif = $motif;return $this;}public function getDescription(): ?string{return $this->description;}public function setDescription(string $description): self{$this->description = $description;return $this;}public function getCreatedAt(): ?\DateTimeImmutable{return $this->createdAt;}public function setCreatedAt(\DateTimeImmutable $createdAt): self{$this->createdAt = $createdAt;return $this;}public function getDeleteAt(): ?\DateTimeImmutable{return $this->deleteAt;}public function setDeleteAt(?\DateTimeImmutable $deleteAt): self{$this->deleteAt = $deleteAt;return $this;}public function getStatut(): ?int{return $this->statut;}public function setStatut(int $statut): self{$this->statut = $statut;return $this;}public function getNom(): ?string{return $this->nom;}public function setNom(string $nom): self{$this->nom = $nom;return $this;}public function getPrenom(): ?string{return $this->prenom;}public function setPrenom(string $prenom): self{$this->prenom = $prenom;return $this;}}