src/Entity/SiteCoordonnees.php line 9

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Entity;
  3. use Acme\SudcmsBundle\Repository\SiteCoordonneesRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassSiteCoordonneesRepository::class)]
  6. class SiteCoordonnees {
  7.     #[ORM\Id]
  8.     #[ORM\GeneratedValue]
  9.     #[ORM\Column(type'integer')]
  10.     private $id;
  11.     #[ORM\Column(type'string'length400nullabletrue)]
  12.     private $coordAdresse;
  13.     #[ORM\Column(type'string'length255nullabletrue)]
  14.     private $coordVille;
  15.     #[ORM\Column(type'string'length10nullabletrue)]
  16.     private $coordCP;
  17.     #[ORM\Column(type'string'length15nullabletrue)]
  18.     private $coordTel;
  19.     #[ORM\Column(type'string'length15nullabletrue)]
  20.     private $coordTelFixe;
  21.     #[ORM\Column(type'string'length14nullabletrue)]
  22.     private $coordSiret;
  23.     #[ORM\Column(type'string'length25nullabletrue)]
  24.     private $coordNumTVA;
  25.     #[ORM\Column(type'string'length10nullabletrue)]
  26.     private $coordCodeAPE;
  27.     #[ORM\Column(type'string'length50nullabletrue)]
  28.     private $coordCapitalSocial;
  29.     #[ORM\Column(type'string'length2nullabletrue)]
  30.     private $siteLang;
  31.     #[ORM\Column(type'integer'nullabletrue)]
  32.     private $siteUid;
  33.     #[ORM\Column(type'string'length255nullabletrue)]
  34.     private $coordPays;
  35.     #[ORM\Column(type'string'length20nullabletrue)]
  36.     private $type;
  37.     #[ORM\Column(type'string'length255nullabletrue)]
  38.     private $coordRcs;
  39.     public function getId(): ?int {
  40.         return $this->id;
  41.     }
  42.     public function getCoordAdresse(): ?string {
  43.         return $this->coordAdresse;
  44.     }
  45.     public function setCoordAdresse(?string $coordAdresse): self {
  46.         $this->coordAdresse $coordAdresse;
  47.         return $this;
  48.     }
  49.     public function getCoordVille(): ?string {
  50.         return $this->coordVille;
  51.     }
  52.     public function setCoordVille(?string $coordVille): self {
  53.         $this->coordVille $coordVille;
  54.         return $this;
  55.     }
  56.     public function getCoordCP(): ?string {
  57.         return $this->coordCP;
  58.     }
  59.     public function setCoordCP(?string $coordCP): self {
  60.         $this->coordCP $coordCP;
  61.         return $this;
  62.     }
  63.     public function getCoordTel(): ?string {
  64.         return $this->coordTel;
  65.     }
  66.     public function setCoordTel(?string $coordTel): self {
  67.         $this->coordTel $coordTel;
  68.         return $this;
  69.     }
  70.     public function getCoordTelFixe(): ?string {
  71.         return $this->coordTelFixe;
  72.     }
  73.     public function setCoordTelFixe(?string $coordTelFixe): self {
  74.         $this->coordTelFixe $coordTelFixe;
  75.         return $this;
  76.     }
  77.     public function getCoordSiret(): ?int {
  78.         return $this->coordSiret;
  79.     }
  80.     public function setCoordSiret(?int $coordSiret): self {
  81.         $this->coordSiret $coordSiret;
  82.         return $this;
  83.     }
  84.     public function getCoordNumTVA(): ?string {
  85.         return $this->coordNumTVA;
  86.     }
  87.     public function setCoordNumTVA(?string $coordNumTVA): self {
  88.         $this->coordNumTVA $coordNumTVA;
  89.         return $this;
  90.     }
  91.     public function getCoordCodeAPE(): ?string {
  92.         return $this->coordCodeAPE;
  93.     }
  94.     public function setCoordCodeAPE(?string $coordCodeAPE): self {
  95.         $this->coordCodeAPE $coordCodeAPE;
  96.         return $this;
  97.     }
  98.     public function getCoordCapitalSocial(): ?string {
  99.         return $this->coordCapitalSocial;
  100.     }
  101.     public function setCoordCapitalSocial(?string $coordCapitalSocial): self {
  102.         $this->coordCapitalSocial $coordCapitalSocial;
  103.         return $this;
  104.     }
  105.     public function getSiteLang(): ?string {
  106.         return $this->siteLang;
  107.     }
  108.     public function setSiteLang(?string $siteLang): self {
  109.         $this->siteLang $siteLang;
  110.         return $this;
  111.     }
  112.     public function getSiteUid(): ?int {
  113.         return $this->siteUid;
  114.     }
  115.     public function setSiteUid(?int $siteUid): self {
  116.         $this->siteUid $siteUid;
  117.         return $this;
  118.     }
  119.     public function getCoordPays(): ?string
  120.     {
  121.         return $this->coordPays;
  122.     }
  123.     public function setCoordPays(?string $coordPays): self
  124.     {
  125.         $this->coordPays $coordPays;
  126.         return $this;
  127.     }
  128.     public function getType(): ?string
  129.     {
  130.         return $this->type;
  131.     }
  132.     public function setType(?string $type): self
  133.     {
  134.         $this->type $type;
  135.         return $this;
  136.     }
  137.     public function getCoordRcs(): ?string
  138.     {
  139.         return $this->coordRcs;
  140.     }
  141.     public function setCoordRcs(?string $coordRcs): self
  142.     {
  143.         $this->coordRcs $coordRcs;
  144.         return $this;
  145.     }
  146. }