<?php
namespace App\Entity;
use App\Repository\DevisRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=DevisRepository::class)
*/
class Devis
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Nom;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Prenom;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Telephone;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Email;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Adresse;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Societe;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Siret;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Budget;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Commentaire;
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 getTelephone(): ?int
{
return $this->Telephone;
}
public function setTelephone(?int $Telephone): self
{
$this->Telephone = $Telephone;
return $this;
}
public function getEmail(): ?string
{
return $this->Email;
}
public function setEmail(?string $Email): self
{
$this->Email = $Email;
return $this;
}
public function getAdresse(): ?string
{
return $this->Adresse;
}
public function setAdresse(?string $Adresse): self
{
$this->Adresse = $Adresse;
return $this;
}
public function getSociete(): ?string
{
return $this->Societe;
}
public function setSociete(?string $Societe): self
{
$this->Societe = $Societe;
return $this;
}
public function getSiret(): ?int
{
return $this->Siret;
}
public function setSiret(?int $Siret): self
{
$this->Siret = $Siret;
return $this;
}
public function getBudget(): ?int
{
return $this->Budget;
}
public function setBudget(?int $Budget): self
{
$this->Budget = $Budget;
return $this;
}
public function getCommentaire(): ?string
{
return $this->Commentaire;
}
public function setCommentaire(?string $Commentaire): self
{
$this->Commentaire = $Commentaire;
return $this;
}
}