<?php
namespace App\Entity;
use App\Repository\EvosimulRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=EvosimulRepository::class)
*/
class Evosimul
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $nom;
/**
* @ORM\Column(type="string", length=255)
*/
private $prenom;
/**
* @ORM\Column(type="string", length=255)
*/
private $cp;
/**
* @ORM\Column(type="string", length=255)
*/
private $ville;
/**
* @ORM\Column(type="string", length=255)
*/
private $tel;
/**
* @ORM\Column(type="string", length=255)
*/
private $email;
/**
* @ORM\Column(type="integer")
*/
private $const;
/**
* @ORM\Column(type="string", length=255)
*/
private $m2;
/**
* @ORM\Column(type="integer")
*/
private $chauf;
/**
* @ORM\Column(type="integer")
*/
private $depart;
/**
* @ORM\Column(type="text")
*/
private $comments;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $projet;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $type;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $sujet;
/**
* @ORM\Column(type="boolean")
*/
private $rappel;
public function getId(): ?int
{
return $this->id;
}
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;
}
public function getCp(): ?string
{
return $this->cp;
}
public function setCp(string $cp): self
{
$this->cp = $cp;
return $this;
}
public function getVille(): ?string
{
return $this->ville;
}
public function setVille(string $ville): self
{
$this->ville = $ville;
return $this;
}
public function getTel(): ?string
{
return $this->tel;
}
public function setTel(string $tel): self
{
$this->tel = $tel;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
public function getConst(): ?int
{
return $this->const;
}
public function setConst(int $const): self
{
$this->const = $const;
return $this;
}
public function getM2(): ?string
{
return $this->m2;
}
public function setM2(string $m2): self
{
$this->m2 = $m2;
return $this;
}
public function getChauf(): ?int
{
return $this->chauf;
}
public function setChauf(int $chauf): self
{
$this->chauf = $chauf;
return $this;
}
public function getDepart(): ?int
{
return $this->depart;
}
public function setDepart(int $depart): self
{
$this->depart = $depart;
return $this;
}
public function getComments(): ?string
{
return $this->comments;
}
public function setComments(string $comments): self
{
$this->comments = $comments;
return $this;
}
public function getProjet(): ?string
{
return $this->projet;
}
public function setProjet(?string $projet): self
{
$this->projet = $projet;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(?string $type): self
{
$this->type = $type;
return $this;
}
public function getSujet(): ?string
{
return $this->sujet;
}
public function setSujet(?string $sujet): self
{
$this->sujet = $sujet;
return $this;
}
public function isRappel(): ?bool
{
return $this->rappel;
}
public function setRappel(bool $rappel): self
{
$this->rappel = $rappel;
return $this;
}
}