<?php
namespace App\Entity;
use App\Repository\BusinessInformationRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: BusinessInformationRepository::class)]
class BusinessInformation
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $business_name = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $street_address = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $state = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $fixe_phone = null;
#[ORM\Column(length: 100, nullable: true)]
private ?string $fax_number = null;
#[ORM\Column(length: 100, nullable: true)]
private ?string $mobile = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $email = null;
#[ORM\Column(length: 100, nullable: true)]
private ?string $website = null;
#[ORM\Column(length: 100, nullable: true)]
private ?string $categories = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $logo = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $city = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $description = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $contact_name = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $business_title = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $custmer_type = null;
#[ORM\Column(length: 500, nullable: true)]
private ?string $key_words = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $general_info = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $created_by = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $statut = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $created_date = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $company_presentation = null;
#[ORM\Column(length: 20, nullable: true)]
private ?string $year_established = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $service_photo_1 = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $service_photo_2 = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $service_photo_3 = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $service_photo_4 = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $service_photo_5 = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $service_photo_6 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $documentations_catalogs = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $company_references = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $video_entreprise = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $facebook = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $youtube = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $maps = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $banner = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $add_date = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $maquette = null;
#[ORM\Column(nullable: true)]
private ?bool $alaune = null;
public function getId(): ?int
{
return $this->id;
}
public function getBusinessName(): ?string
{
return $this->business_name;
}
public function setBusinessName(string $business_name): static
{
$this->business_name = $business_name;
return $this;
}
public function getStreetAddress(): ?string
{
return $this->street_address;
}
public function setStreetAddress(?string $street_address): static
{
$this->street_address = $street_address;
return $this;
}
public function getState(): ?string
{
return $this->state;
}
public function setState(?string $state): static
{
$this->state = $state;
return $this;
}
public function getFixePhone(): ?string
{
return $this->fixe_phone;
}
public function setFixePhone(?string $fixe_phone): static
{
$this->fixe_phone = $fixe_phone;
return $this;
}
public function getFaxNumber(): ?string
{
return $this->fax_number;
}
public function setFaxNumber(?string $fax_number): static
{
$this->fax_number = $fax_number;
return $this;
}
public function getMobile(): ?string
{
return $this->mobile;
}
public function setMobile(?string $mobile): static
{
$this->mobile = $mobile;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): static
{
$this->email = $email;
return $this;
}
public function getWebsite(): ?string
{
return $this->website;
}
public function setWebsite(?string $website): static
{
$this->website = $website;
return $this;
}
public function getCategories(): ?string
{
return $this->categories;
}
public function setCategories(string $categories): static
{
$this->categories = $categories;
return $this;
}
public function getLogo(): ?string
{
return $this->logo;
}
public function setLogo(?string $logo): static
{
$this->logo = $logo;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(?string $city): static
{
$this->city = $city;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): static
{
$this->description = $description;
return $this;
}
public function getContactName(): ?string
{
return $this->contact_name;
}
public function setContactName(?string $contact_name): static
{
$this->contact_name = $contact_name;
return $this;
}
public function getBusinessTitle(): ?string
{
return $this->business_title;
}
public function setBusinessTitle(?string $business_title): static
{
$this->business_title = $business_title;
return $this;
}
public function getCustmerType(): ?string
{
return $this->custmer_type;
}
public function setCustmerType(?string $custmer_type): static
{
$this->custmer_type = $custmer_type;
return $this;
}
public function getKeyWords(): ?string
{
return $this->key_words;
}
public function setKeyWords(?string $key_words): static
{
$this->key_words = $key_words;
return $this;
}
public function getGeneralInfo(): ?string
{
return $this->general_info;
}
public function setGeneralInfo(?string $general_info): static
{
$this->general_info = $general_info;
return $this;
}
public function getCreatedBy(): ?string
{
return $this->created_by;
}
public function setCreatedBy(?string $created_by): static
{
$this->created_by = $created_by;
return $this;
}
public function getStatut(): ?string
{
return $this->statut;
}
public function setStatut(?string $statut): static
{
$this->statut = $statut;
return $this;
}
public function getCreatedDate(): ?string
{
return $this->created_date;
}
public function setCreatedDate(?string $created_date): static
{
$this->created_date = $created_date;
return $this;
}
public function getCompanyPresentation(): ?string
{
return $this->company_presentation;
}
public function setCompanyPresentation(?string $company_presentation): static
{
$this->company_presentation = $company_presentation;
return $this;
}
public function getYearEstablished(): ?string
{
return $this->year_established;
}
public function setYearEstablished(?string $year_established): static
{
$this->year_established = $year_established;
return $this;
}
public function getServicePhoto1(): ?string
{
return $this->service_photo_1;
}
public function setServicePhoto1(?string $service_photo_1): static
{
$this->service_photo_1 = $service_photo_1;
return $this;
}
public function getServicePhoto2(): ?string
{
return $this->service_photo_2;
}
public function setServicePhoto2(?string $service_photo_2): static
{
$this->service_photo_2 = $service_photo_2;
return $this;
}
public function getServicePhoto3(): ?string
{
return $this->service_photo_3;
}
public function setServicePhoto3(?string $service_photo_3): static
{
$this->service_photo_3 = $service_photo_3;
return $this;
}
public function getServicePhoto4(): ?string
{
return $this->service_photo_4;
}
public function setServicePhoto4(?string $service_photo_4): static
{
$this->service_photo_4 = $service_photo_4;
return $this;
}
public function getServicePhoto5(): ?string
{
return $this->service_photo_5;
}
public function setServicePhoto5(?string $service_photo_5): static
{
$this->service_photo_5 = $service_photo_5;
return $this;
}
public function getServicePhoto6(): ?string
{
return $this->service_photo_6;
}
public function setServicePhoto6(?string $service_photo_6): static
{
$this->service_photo_6 = $service_photo_6;
return $this;
}
public function getDocumentationsCatalogs(): ?string
{
return $this->documentations_catalogs;
}
public function setDocumentationsCatalogs(?string $documentations_catalogs): static
{
$this->documentations_catalogs = $documentations_catalogs;
return $this;
}
public function getCompanyReferences(): ?string
{
return $this->company_references;
}
public function setCompanyReferences(?string $company_references): static
{
$this->company_references = $company_references;
return $this;
}
public function getVideoEntreprise(): ?string
{
return $this->video_entreprise;
}
public function setVideoEntreprise(?string $video_entreprise): static
{
$this->video_entreprise = $video_entreprise;
return $this;
}
public function getFacebook(): ?string
{
return $this->facebook;
}
public function setFacebook(?string $facebook): static
{
$this->facebook = $facebook;
return $this;
}
public function getYoutube(): ?string
{
return $this->youtube;
}
public function setYoutube(?string $youtube): static
{
$this->youtube = $youtube;
return $this;
}
public function getMaps(): ?string
{
return $this->maps;
}
public function setMaps(?string $maps): static
{
$this->maps = $maps;
return $this;
}
public function getBanner(): ?string
{
return $this->banner;
}
public function setBanner(?string $banner): static
{
$this->banner = $banner;
return $this;
}
public function getAddDate(): ?string
{
return $this->add_date;
}
public function setAddDate(?string $add_date): static
{
$this->add_date = $add_date;
return $this;
}
public function getMaquette(): ?string
{
return $this->maquette;
}
public function setMaquette(?string $maquette): static
{
$this->maquette = $maquette;
return $this;
}
public function isAlaune(): ?bool
{
return $this->alaune;
}
public function setAlaune(?bool $alaune): static
{
$this->alaune = $alaune;
return $this;
}
}