src/Entity/BusinessInformation.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BusinessInformationRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassBusinessInformationRepository::class)]
  7. class BusinessInformation
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $business_name null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $street_address null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $state null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $fixe_phone null;
  21.     #[ORM\Column(length100nullabletrue)]
  22.     private ?string $fax_number null;
  23.     #[ORM\Column(length100nullabletrue)]
  24.     private ?string $mobile null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $email null;
  27.     #[ORM\Column(length100nullabletrue)]
  28.     private ?string $website null;
  29.     #[ORM\Column(length100nullabletrue)]
  30.     private ?string $categories null;
  31.     #[ORM\Column(length50nullabletrue)]
  32.     private ?string $logo null;
  33.     #[ORM\Column(length50nullabletrue)]
  34.     private ?string $city null;
  35.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  36.     private ?string $description null;
  37.     #[ORM\Column(length50nullabletrue)]
  38.     private ?string $contact_name null;
  39.     #[ORM\Column(length255nullabletrue)]
  40.     private ?string $business_title null;
  41.     #[ORM\Column(length255nullabletrue)]
  42.     private ?string $custmer_type null;
  43.     #[ORM\Column(length500nullabletrue)]
  44.     private ?string $key_words null;
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $general_info null;
  47.     #[ORM\Column(length255nullabletrue)]
  48.     private ?string $created_by null;
  49.     #[ORM\Column(length255nullabletrue)]
  50.     private ?string $statut null;
  51.     #[ORM\Column(length255nullabletrue)]
  52.     private ?string $created_date  null;
  53.    
  54.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  55.     private ?string $company_presentation null;
  56.     #[ORM\Column(length20nullabletrue)]
  57.     private ?string $year_established null;
  58.     #[ORM\Column(length50nullabletrue)]
  59.     private ?string $service_photo_1 null;
  60.     #[ORM\Column(length50nullabletrue)]
  61.     private ?string $service_photo_2 null;
  62.     #[ORM\Column(length50nullabletrue)]
  63.     private ?string $service_photo_3 null;
  64.     #[ORM\Column(length50nullabletrue)]
  65.     private ?string $service_photo_4 null;
  66.     #[ORM\Column(length50nullabletrue)]
  67.     private ?string $service_photo_5 null;
  68.     #[ORM\Column(length50nullabletrue)]
  69.     private ?string $service_photo_6 null;
  70.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  71.     private ?string $documentations_catalogs null;
  72.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  73.     private ?string $company_references null;
  74.     #[ORM\Column(length50nullabletrue)]
  75.     private ?string $video_entreprise null;
  76.     #[ORM\Column(length255nullabletrue)]
  77.     private ?string $facebook null;
  78.     #[ORM\Column(length50nullabletrue)]
  79.     private ?string $youtube null;
  80.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  81.     private ?string $maps null;
  82.     #[ORM\Column(length50nullabletrue)]
  83.     private ?string $banner null;
  84.     #[ORM\Column(length50nullabletrue)]
  85.     private ?string $add_date null;
  86.     #[ORM\Column(length255nullabletrue)]
  87.     private ?string $maquette null;
  88.     #[ORM\Column(nullabletrue)]
  89.     private ?bool $alaune null;
  90.     public function getId(): ?int
  91.     {
  92.         return $this->id;
  93.     }
  94.     public function getBusinessName(): ?string
  95.     {
  96.         return $this->business_name;
  97.     }
  98.     public function setBusinessName(string $business_name): static
  99.     {
  100.         $this->business_name $business_name;
  101.         return $this;
  102.     }
  103.     public function getStreetAddress(): ?string
  104.     {
  105.         return $this->street_address;
  106.     }
  107.     public function setStreetAddress(?string $street_address): static
  108.     {
  109.         $this->street_address $street_address;
  110.         return $this;
  111.     }
  112.     public function getState(): ?string
  113.     {
  114.         return $this->state;
  115.     }
  116.     public function setState(?string $state): static
  117.     {
  118.         $this->state $state;
  119.         return $this;
  120.     }
  121.     public function getFixePhone(): ?string
  122.     {
  123.         return $this->fixe_phone;
  124.     }
  125.     public function setFixePhone(?string $fixe_phone): static
  126.     {
  127.         $this->fixe_phone $fixe_phone;
  128.         return $this;
  129.     }
  130.     public function getFaxNumber(): ?string
  131.     {
  132.         return $this->fax_number;
  133.     }
  134.     public function setFaxNumber(?string $fax_number): static
  135.     {
  136.         $this->fax_number $fax_number;
  137.         return $this;
  138.     }
  139.     public function getMobile(): ?string
  140.     {
  141.         return $this->mobile;
  142.     }
  143.     public function setMobile(?string $mobile): static
  144.     {
  145.         $this->mobile $mobile;
  146.         return $this;
  147.     }
  148.     public function getEmail(): ?string
  149.     {
  150.         return $this->email;
  151.     }
  152.     public function setEmail(?string $email): static
  153.     {
  154.         $this->email $email;
  155.         return $this;
  156.     }
  157.     public function getWebsite(): ?string
  158.     {
  159.         return $this->website;
  160.     }
  161.     public function setWebsite(?string $website): static
  162.     {
  163.         $this->website $website;
  164.         return $this;
  165.     }
  166.     public function getCategories(): ?string
  167.     {
  168.         return $this->categories;
  169.     }
  170.     public function setCategories(string $categories): static
  171.     {
  172.         $this->categories $categories;
  173.         return $this;
  174.     }
  175.     public function getLogo(): ?string
  176.     {
  177.         return $this->logo;
  178.     }
  179.     public function setLogo(?string $logo): static
  180.     {
  181.         $this->logo $logo;
  182.         return $this;
  183.     }
  184.     public function getCity(): ?string
  185.     {
  186.         return $this->city;
  187.     }
  188.     public function setCity(?string $city): static
  189.     {
  190.         $this->city $city;
  191.         return $this;
  192.     }
  193.     public function getDescription(): ?string
  194.     {
  195.         return $this->description;
  196.     }
  197.     public function setDescription(?string $description): static
  198.     {
  199.         $this->description $description;
  200.         return $this;
  201.     }
  202.     public function getContactName(): ?string
  203.     {
  204.         return $this->contact_name;
  205.     }
  206.     public function setContactName(?string $contact_name): static
  207.     {
  208.         $this->contact_name $contact_name;
  209.         return $this;
  210.     }
  211.     public function getBusinessTitle(): ?string
  212.     {
  213.         return $this->business_title;
  214.     }
  215.     public function setBusinessTitle(?string $business_title): static
  216.     {
  217.         $this->business_title $business_title;
  218.         return $this;
  219.     }
  220.     public function getCustmerType(): ?string
  221.     {
  222.         return $this->custmer_type;
  223.     }
  224.     public function setCustmerType(?string $custmer_type): static
  225.     {
  226.         $this->custmer_type $custmer_type;
  227.         return $this;
  228.     }
  229.     public function getKeyWords(): ?string
  230.     {
  231.         return $this->key_words;
  232.     }
  233.     public function setKeyWords(?string $key_words): static
  234.     {
  235.         $this->key_words $key_words;
  236.         return $this;
  237.     }
  238.     public function getGeneralInfo(): ?string
  239.     {
  240.         return $this->general_info;
  241.     }
  242.     public function setGeneralInfo(?string $general_info): static
  243.     {
  244.         $this->general_info $general_info;
  245.         return $this;
  246.     }
  247.   
  248.     public function getCreatedBy(): ?string
  249.     {
  250.         return $this->created_by;
  251.     }
  252.     public function setCreatedBy(?string $created_by): static
  253.     {
  254.         $this->created_by $created_by;
  255.         return $this;
  256.     }
  257.     public function getStatut(): ?string
  258.     {
  259.         return $this->statut;
  260.     }
  261.     public function setStatut(?string $statut): static
  262.     {
  263.         $this->statut $statut;
  264.         return $this;
  265.     }
  266.     public function getCreatedDate(): ?string
  267.     {
  268.         return $this->created_date;
  269.     }
  270.     public function setCreatedDate(?string $created_date): static
  271.     {
  272.         $this->created_date $created_date;
  273.         return $this;
  274.     }
  275.     public function getCompanyPresentation(): ?string
  276.     {
  277.         return $this->company_presentation;
  278.     }
  279.     public function setCompanyPresentation(?string $company_presentation): static
  280.     {
  281.         $this->company_presentation $company_presentation;
  282.         return $this;
  283.     }
  284.     public function getYearEstablished(): ?string
  285.     {
  286.         return $this->year_established;
  287.     }
  288.     public function setYearEstablished(?string $year_established): static
  289.     {
  290.         $this->year_established $year_established;
  291.         return $this;
  292.     }
  293.     public function getServicePhoto1(): ?string
  294.     {
  295.         return $this->service_photo_1;
  296.     }
  297.     public function setServicePhoto1(?string $service_photo_1): static
  298.     {
  299.         $this->service_photo_1 $service_photo_1;
  300.         return $this;
  301.     }
  302.     public function getServicePhoto2(): ?string
  303.     {
  304.         return $this->service_photo_2;
  305.     }
  306.     public function setServicePhoto2(?string $service_photo_2): static
  307.     {
  308.         $this->service_photo_2 $service_photo_2;
  309.         return $this;
  310.     }
  311.     public function getServicePhoto3(): ?string
  312.     {
  313.         return $this->service_photo_3;
  314.     }
  315.     public function setServicePhoto3(?string $service_photo_3): static
  316.     {
  317.         $this->service_photo_3 $service_photo_3;
  318.         return $this;
  319.     }
  320.     public function getServicePhoto4(): ?string
  321.     {
  322.         return $this->service_photo_4;
  323.     }
  324.     public function setServicePhoto4(?string $service_photo_4): static
  325.     {
  326.         $this->service_photo_4 $service_photo_4;
  327.         return $this;
  328.     }
  329.     public function getServicePhoto5(): ?string
  330.     {
  331.         return $this->service_photo_5;
  332.     }
  333.     public function setServicePhoto5(?string $service_photo_5): static
  334.     {
  335.         $this->service_photo_5 $service_photo_5;
  336.         return $this;
  337.     }
  338.     public function getServicePhoto6(): ?string
  339.     {
  340.         return $this->service_photo_6;
  341.     }
  342.     public function setServicePhoto6(?string $service_photo_6): static
  343.     {
  344.         $this->service_photo_6 $service_photo_6;
  345.         return $this;
  346.     }
  347.     public function getDocumentationsCatalogs(): ?string
  348.     {
  349.         return $this->documentations_catalogs;
  350.     }
  351.     public function setDocumentationsCatalogs(?string $documentations_catalogs): static
  352.     {
  353.         $this->documentations_catalogs $documentations_catalogs;
  354.         return $this;
  355.     }
  356.     public function getCompanyReferences(): ?string
  357.     {
  358.         return $this->company_references;
  359.     }
  360.     public function setCompanyReferences(?string $company_references): static
  361.     {
  362.         $this->company_references $company_references;
  363.         return $this;
  364.     }
  365.     public function getVideoEntreprise(): ?string
  366.     {
  367.         return $this->video_entreprise;
  368.     }
  369.     public function setVideoEntreprise(?string $video_entreprise): static
  370.     {
  371.         $this->video_entreprise $video_entreprise;
  372.         return $this;
  373.     }
  374.     public function getFacebook(): ?string
  375.     {
  376.         return $this->facebook;
  377.     }
  378.     public function setFacebook(?string $facebook): static
  379.     {
  380.         $this->facebook $facebook;
  381.         return $this;
  382.     }
  383.     public function getYoutube(): ?string
  384.     {
  385.         return $this->youtube;
  386.     }
  387.     public function setYoutube(?string $youtube): static
  388.     {
  389.         $this->youtube $youtube;
  390.         return $this;
  391.     }
  392.     public function getMaps(): ?string
  393.     {
  394.         return $this->maps;
  395.     }
  396.     public function setMaps(?string $maps): static
  397.     {
  398.         $this->maps $maps;
  399.         return $this;
  400.     }
  401.     public function getBanner(): ?string
  402.     {
  403.         return $this->banner;
  404.     }
  405.     public function setBanner(?string $banner): static
  406.     {
  407.         $this->banner $banner;
  408.         return $this;
  409.     }
  410.     public function getAddDate(): ?string
  411.     {
  412.         return $this->add_date;
  413.     }
  414.     public function setAddDate(?string $add_date): static
  415.     {
  416.         $this->add_date $add_date;
  417.         return $this;
  418.     }
  419.     public function getMaquette(): ?string
  420.     {
  421.         return $this->maquette;
  422.     }
  423.     public function setMaquette(?string $maquette): static
  424.     {
  425.         $this->maquette $maquette;
  426.         return $this;
  427.     }
  428.     public function isAlaune(): ?bool
  429.     {
  430.         return $this->alaune;
  431.     }
  432.     public function setAlaune(?bool $alaune): static
  433.     {
  434.         $this->alaune $alaune;
  435.         return $this;
  436.     }
  437. }