<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* PointsOfSale
*
* @ORM\Table(name="points_of_sale")
* @ORM\Entity(repositoryClass="App\Repository\PointsOfSaleRepository")
*/
class PointsOfSale
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var int|null
*
* @ORM\Column(name="id_cashmag", type="integer", nullable=true)
*/
private $idCashmag;
/**
* @var int|null
*
* @ORM\Column(name="id_country", type="integer", nullable=true)
*/
private $idCountry;
/**
* @var string|null
*
* @ORM\Column(name="name", type="string", length=255, nullable=true)
*/
private $name;
/**
* @var string|null
*
* @ORM\Column(name="name_webshop", type="string", length=255, nullable=true)
*/
private $nameWebshop;
/**
* @var string|null
*
* @ORM\Column(name="address", type="string", length=255, nullable=true)
*/
private $address;
/**
* @var string|null
*
* @ORM\Column(name="postal", type="string", length=255, nullable=true)
*/
private $postal;
/**
* @var bool|null
*
* @ORM\Column(name="enable_credit", type="boolean", nullable=true)
*/
private $enableCredit;
/**
* @var bool|null
*
* @ORM\Column(name="enable_order", type="boolean", nullable=true)
*/
private $enableOrder;
/**
* @var bool|null
*
* @ORM\Column(name="has_alcool", type="boolean", nullable=true)
*/
private $hasAlcool;
/**
* @var bool|null
*
* @ORM\Column(name="webshop_display_mode", type="boolean", nullable=true)
*/
private $webshopDisplayMode;
/**
* @var int|null
*
* @ORM\Column(name="share_capital", type="integer", nullable=true)
*/
private $shareCapital;
/**
* @var string|null
*
* @ORM\Column(name="legal_form", type="string", length=255, nullable=true)
*/
private $legalForm;
/**
* @var string|null
*
* @ORM\Column(name="logo_base64", type="blob", length=0, nullable=true)
*/
private $logoBase64;
/**
* @var string|null
*
* @ORM\Column(name="tax_identification", type="string", length=255, nullable=true)
*/
private $taxIdentification;
/**
* @var string|null
*
* @ORM\Column(name="activity_identification", type="string", length=255, nullable=true)
*/
private $activityIdentification;
/**
* @var string|null
*
* @ORM\Column(name="company_identification", type="string", length=255, nullable=true)
*/
private $companyIdentification;
/**
* @var string|null
*
* @ORM\Column(name="phone_2", type="string", length=255, nullable=true)
*/
private $phone2;
/**
* @var string|null
*
* @ORM\Column(name="phone", type="string", length=255, nullable=true)
*/
private $phone;
/**
* @var string|null
*
* @ORM\Column(name="website", type="string", length=255, nullable=true)
*/
private $website;
/**
* @var string|null
*
* @ORM\Column(name="city", type="string", length=255, nullable=true)
*/
private $city;
public function getId(): ?int
{
return $this->id;
}
public function getIdCashmag(): ?int
{
return $this->idCashmag;
}
public function setIdCashmag(?int $idCashmag): self
{
$this->idCashmag = $idCashmag;
return $this;
}
public function getIdCountry(): ?int
{
return $this->idCountry;
}
public function setIdCountry(?int $idCountry): self
{
$this->idCountry = $idCountry;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
public function getNameWebshop(): ?string
{
return $this->nameWebshop;
}
public function setNameWebshop(?string $nameWebshop): self
{
$this->nameWebshop = $nameWebshop;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(?string $address): self
{
$this->address = $address;
return $this;
}
public function getPostal(): ?string
{
return $this->postal;
}
public function setPostal(?string $postal): self
{
$this->postal = $postal;
return $this;
}
public function isEnableCredit(): ?bool
{
return $this->enableCredit;
}
public function setEnableCredit(?bool $enableCredit): self
{
$this->enableCredit = $enableCredit;
return $this;
}
public function isEnableOrder(): ?bool
{
return $this->enableOrder;
}
public function setEnableOrder(?bool $enableOrder): self
{
$this->enableOrder = $enableOrder;
return $this;
}
public function isHasAlcool(): ?bool
{
return $this->hasAlcool;
}
public function setHasAlcool(?bool $hasAlcool): self
{
$this->hasAlcool = $hasAlcool;
return $this;
}
public function isWebshopDisplayMode(): ?bool
{
return $this->webshopDisplayMode;
}
public function setWebshopDisplayMode(?bool $webshopDisplayMode): self
{
$this->webshopDisplayMode = $webshopDisplayMode;
return $this;
}
public function getShareCapital(): ?int
{
return $this->shareCapital;
}
public function setShareCapital(?int $shareCapital): self
{
$this->shareCapital = $shareCapital;
return $this;
}
public function getLegalForm(): ?string
{
return $this->legalForm;
}
public function setLegalForm(?string $legalForm): self
{
$this->legalForm = $legalForm;
return $this;
}
public function getLogoBase64()
{
return $this->logoBase64;
}
public function setLogoBase64($logoBase64): self
{
$this->logoBase64 = $logoBase64;
return $this;
}
public function getTaxIdentification(): ?string
{
return $this->taxIdentification;
}
public function setTaxIdentification(?string $taxIdentification): self
{
$this->taxIdentification = $taxIdentification;
return $this;
}
public function getActivityIdentification(): ?string
{
return $this->activityIdentification;
}
public function setActivityIdentification(?string $activityIdentification): self
{
$this->activityIdentification = $activityIdentification;
return $this;
}
public function getCompanyIdentification(): ?string
{
return $this->companyIdentification;
}
public function setCompanyIdentification(?string $companyIdentification): self
{
$this->companyIdentification = $companyIdentification;
return $this;
}
public function getPhone2(): ?string
{
return $this->phone2;
}
public function setPhone2(?string $phone2): self
{
$this->phone2 = $phone2;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(?string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getWebsite(): ?string
{
return $this->website;
}
public function setWebsite(?string $website): self
{
$this->website = $website;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(?string $city): self
{
$this->city = $city;
return $this;
}
}