<?php
namespace Acme\SudcmsBundle\Entity;
use Acme\SudcmsBundle\Repository\SiteCoordonneesRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: SiteCoordonneesRepository::class)]
class SiteCoordonnees {
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 400, nullable: true)]
private $coordAdresse;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $coordVille;
#[ORM\Column(type: 'string', length: 10, nullable: true)]
private $coordCP;
#[ORM\Column(type: 'string', length: 15, nullable: true)]
private $coordTel;
#[ORM\Column(type: 'string', length: 15, nullable: true)]
private $coordTelFixe;
#[ORM\Column(type: 'string', length: 14, nullable: true)]
private $coordSiret;
#[ORM\Column(type: 'string', length: 25, nullable: true)]
private $coordNumTVA;
#[ORM\Column(type: 'string', length: 10, nullable: true)]
private $coordCodeAPE;
#[ORM\Column(type: 'string', length: 50, nullable: true)]
private $coordCapitalSocial;
#[ORM\Column(type: 'string', length: 2, nullable: true)]
private $siteLang;
#[ORM\Column(type: 'integer', nullable: true)]
private $siteUid;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $coordPays;
#[ORM\Column(type: 'string', length: 20, nullable: true)]
private $type;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $coordRcs;
public function getId(): ?int {
return $this->id;
}
public function getCoordAdresse(): ?string {
return $this->coordAdresse;
}
public function setCoordAdresse(?string $coordAdresse): self {
$this->coordAdresse = $coordAdresse;
return $this;
}
public function getCoordVille(): ?string {
return $this->coordVille;
}
public function setCoordVille(?string $coordVille): self {
$this->coordVille = $coordVille;
return $this;
}
public function getCoordCP(): ?string {
return $this->coordCP;
}
public function setCoordCP(?string $coordCP): self {
$this->coordCP = $coordCP;
return $this;
}
public function getCoordTel(): ?string {
return $this->coordTel;
}
public function setCoordTel(?string $coordTel): self {
$this->coordTel = $coordTel;
return $this;
}
public function getCoordTelFixe(): ?string {
return $this->coordTelFixe;
}
public function setCoordTelFixe(?string $coordTelFixe): self {
$this->coordTelFixe = $coordTelFixe;
return $this;
}
public function getCoordSiret(): ?int {
return $this->coordSiret;
}
public function setCoordSiret(?int $coordSiret): self {
$this->coordSiret = $coordSiret;
return $this;
}
public function getCoordNumTVA(): ?string {
return $this->coordNumTVA;
}
public function setCoordNumTVA(?string $coordNumTVA): self {
$this->coordNumTVA = $coordNumTVA;
return $this;
}
public function getCoordCodeAPE(): ?string {
return $this->coordCodeAPE;
}
public function setCoordCodeAPE(?string $coordCodeAPE): self {
$this->coordCodeAPE = $coordCodeAPE;
return $this;
}
public function getCoordCapitalSocial(): ?string {
return $this->coordCapitalSocial;
}
public function setCoordCapitalSocial(?string $coordCapitalSocial): self {
$this->coordCapitalSocial = $coordCapitalSocial;
return $this;
}
public function getSiteLang(): ?string {
return $this->siteLang;
}
public function setSiteLang(?string $siteLang): self {
$this->siteLang = $siteLang;
return $this;
}
public function getSiteUid(): ?int {
return $this->siteUid;
}
public function setSiteUid(?int $siteUid): self {
$this->siteUid = $siteUid;
return $this;
}
public function getCoordPays(): ?string
{
return $this->coordPays;
}
public function setCoordPays(?string $coordPays): self
{
$this->coordPays = $coordPays;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(?string $type): self
{
$this->type = $type;
return $this;
}
public function getCoordRcs(): ?string
{
return $this->coordRcs;
}
public function setCoordRcs(?string $coordRcs): self
{
$this->coordRcs = $coordRcs;
return $this;
}
}