<?php
namespace App\Entity;
use App\Repository\FormulesRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: FormulesRepository::class)]
class Formules
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $nom_formule = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $description = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $type = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_creation = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_update = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $prix = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $unite = null;
#[ORM\Column(nullable: true)]
private ?int $etat = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $destination = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $entreprises_cibles = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $pays_cibles = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $villes_cibles = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $cp_cibles = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $tailles_entreprise_cible = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $periodicite = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $dure = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $bonnus_geo = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $bonnus_event = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $bonnus_pub = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $regime_tva = null;
#[ORM\Column(length: 255)]
private ?string $frequence = null;
#[ORM\Column(nullable: true)]
private ?bool $formule_first_page = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $Duree_bonnus_event = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $duree_bonnus_pub = null;
public function getId(): ?int
{
return $this->id;
}
public function getNomFormule(): ?string
{
return $this->nom_formule;
}
public function setNomFormule(?string $nom_formule): static
{
$this->nom_formule = $nom_formule;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): static
{
$this->description = $description;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(?string $type): static
{
$this->type = $type;
return $this;
}
public function getDateCreation(): ?\DateTimeInterface
{
return $this->date_creation;
}
public function setDateCreation(?\DateTimeInterface $date_creation): static
{
$this->date_creation = $date_creation;
return $this;
}
public function getDateUpdate(): ?\DateTimeInterface
{
return $this->date_update;
}
public function setDateUpdate(?\DateTimeInterface $date_update): static
{
$this->date_update = $date_update;
return $this;
}
public function getPrix(): ?string
{
return $this->prix;
}
public function setPrix(?string $prix): static
{
$this->prix = $prix;
return $this;
}
public function getUnite(): ?string
{
return $this->unite;
}
public function setUnite(?string $unite): static
{
$this->unite = $unite;
return $this;
}
public function getEtat(): ?int
{
return $this->etat;
}
public function setEtat(?int $etat): static
{
$this->etat = $etat;
return $this;
}
public function getDestination(): ?array
{
return $this->destination;
}
public function setDestination(?array $destination): static
{
$this->destination = $destination;
return $this;
}
public function getEntreprisesCibles(): ?array
{
return $this->entreprises_cibles;
}
public function setEntreprisesCibles(?array $entreprises_cibles): static
{
$this->entreprises_cibles = $entreprises_cibles;
return $this;
}
public function getPaysCibles(): ?array
{
return $this->pays_cibles;
}
public function setPaysCibles(?array $pays_cibles): static
{
$this->pays_cibles = $pays_cibles;
return $this;
}
public function getVillesCibles(): ?array
{
return $this->villes_cibles;
}
public function setVillesCibles(?array $villes_cibles): static
{
$this->villes_cibles = $villes_cibles;
return $this;
}
public function getCpCibles(): ?array
{
return $this->cp_cibles;
}
public function setCpCibles(?array $cp_cibles): static
{
$this->cp_cibles = $cp_cibles;
return $this;
}
public function getTaillesEntrepriseCible(): ?array
{
return $this->tailles_entreprise_cible;
}
public function setTaillesEntrepriseCible(?array $tailles_entreprise_cible): static
{
$this->tailles_entreprise_cible = $tailles_entreprise_cible;
return $this;
}
public function getPeriodicite(): ?string
{
return $this->periodicite;
}
public function setPeriodicite(?string $periodicite): static
{
$this->periodicite = $periodicite;
return $this;
}
public function getDure(): ?string
{
return $this->dure;
}
public function setDure(?string $dure): static
{
$this->dure = $dure;
return $this;
}
public function getBonnusGeo(): ?string
{
return $this->bonnus_geo;
}
public function setBonnusGeo(?string $bonnus_geo): static
{
$this->bonnus_geo = $bonnus_geo;
return $this;
}
public function getBonnusEvent(): ?string
{
return $this->bonnus_event;
}
public function setBonnusEvent(?string $bonnus_event): static
{
$this->bonnus_event = $bonnus_event;
return $this;
}
public function getBonnusPub(): ?string
{
return $this->bonnus_pub;
}
public function setBonnusPub(?string $bonnus_pub): static
{
$this->bonnus_pub = $bonnus_pub;
return $this;
}
public function getRegimeTva(): ?string
{
return $this->regime_tva;
}
public function setRegimeTva(?string $regime_tva): static
{
$this->regime_tva = $regime_tva;
return $this;
}
public function getFrequence(): ?string
{
return $this->frequence;
}
public function setFrequence(string $frequence): static
{
$this->frequence = $frequence;
return $this;
}
public function isFormuleFirstPage(): ?bool
{
return $this->formule_first_page;
}
public function setFormuleFirstPage(?bool $formule_first_page): static
{
$this->formule_first_page = $formule_first_page;
return $this;
}
public function getDureeBonnusEvent(): ?string
{
return $this->Duree_bonnus_event;
}
public function setDureeBonnusEvent(?string $Duree_bonnus_event): static
{
$this->Duree_bonnus_event = $Duree_bonnus_event;
return $this;
}
public function getDureeBonnusPub(): ?string
{
return $this->duree_bonnus_pub;
}
public function setDureeBonnusPub(?string $duree_bonnus_pub): static
{
$this->duree_bonnus_pub = $duree_bonnus_pub;
return $this;
}
}