<?php
namespace App\Entity;
use App\Repository\CoordonneeRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: CoordonneeRepository::class)]
class Coordonnee
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $nomEntreprise = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $adresse = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mail = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mail2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $telephone = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $telephone2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $logo = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $urlFacebook = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $urlTwitter = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $urlInstagram = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $urlLinked = null;
public function getId(): ?int
{
return $this->id;
}
public function getNomEntreprise(): ?string
{
return $this->nomEntreprise;
}
public function setNomEntreprise(string $nomEntreprise): static
{
$this->nomEntreprise = $nomEntreprise;
return $this;
}
public function getAdresse(): ?string
{
return $this->adresse;
}
public function setAdresse(?string $adresse): static
{
$this->adresse = $adresse;
return $this;
}
public function getMail(): ?string
{
return $this->mail;
}
public function setMail(?string $mail): static
{
$this->mail = $mail;
return $this;
}
public function getMail2(): ?string
{
return $this->mail2;
}
public function setMail2(?string $mail2): static
{
$this->mail2 = $mail2;
return $this;
}
public function getTelephone(): ?string
{
return $this->telephone;
}
public function setTelephone(?string $telephone): static
{
$this->telephone = $telephone;
return $this;
}
public function getTelephone2(): ?string
{
return $this->telephone2;
}
public function setTelephone2(?string $telephone2): static
{
$this->telephone2 = $telephone2;
return $this;
}
public function getLogo(): ?string
{
return $this->logo;
}
public function setLogo(?string $logo): static
{
$this->logo = $logo;
return $this;
}
public function getUrlFacebook(): ?string
{
return $this->urlFacebook;
}
public function setUrlFacebook(?string $urlFacebook): static
{
$this->urlFacebook = $urlFacebook;
return $this;
}
public function getUrlTwitter(): ?string
{
return $this->urlTwitter;
}
public function setUrlTwitter(?string $urlTwitter): static
{
$this->urlTwitter = $urlTwitter;
return $this;
}
public function getUrlInstagram(): ?string
{
return $this->urlInstagram;
}
public function setUrlInstagram(?string $urlInstagram): static
{
$this->urlInstagram = $urlInstagram;
return $this;
}
public function getUrlLinked(): ?string
{
return $this->urlLinked;
}
public function setUrlLinked(?string $urlLinked): static
{
$this->urlLinked = $urlLinked;
return $this;
}
}