src/Entity/Formules.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FormulesRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassFormulesRepository::class)]
  7. class Formules
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $nom_formule null;
  15.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  16.     private ?string $description null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $type null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $date_creation null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $date_update null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $prix null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $unite null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?int $etat null;
  29.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  30.     private ?array $destination null;
  31.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  32.     private ?array $entreprises_cibles null;
  33.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  34.     private ?array $pays_cibles null;
  35.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  36.     private ?array $villes_cibles null;
  37.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  38.     private ?array $cp_cibles null;
  39.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  40.     private ?array $tailles_entreprise_cible null;
  41.     #[ORM\Column(length255nullabletrue)]
  42.     private ?string $periodicite null;
  43.     #[ORM\Column(length255nullabletrue)]
  44.     private ?string $dure null;
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $bonnus_geo null;
  47.     #[ORM\Column(length255nullabletrue)]
  48.     private ?string $bonnus_event null;
  49.     #[ORM\Column(length255nullabletrue)]
  50.     private ?string $bonnus_pub null;
  51.     #[ORM\Column(length255nullabletrue)]
  52.     private ?string $regime_tva null;
  53.     #[ORM\Column(length255)]
  54.     private ?string $frequence null;
  55.     #[ORM\Column(nullabletrue)]
  56.     private ?bool $formule_first_page null;
  57.     #[ORM\Column(length255nullabletrue)]
  58.     private ?string $Duree_bonnus_event null;
  59.     #[ORM\Column(length255nullabletrue)]
  60.     private ?string $duree_bonnus_pub null;
  61.     public function getId(): ?int
  62.     {
  63.         return $this->id;
  64.     }
  65.     public function getNomFormule(): ?string
  66.     {
  67.         return $this->nom_formule;
  68.     }
  69.     public function setNomFormule(?string $nom_formule): static
  70.     {
  71.         $this->nom_formule $nom_formule;
  72.         return $this;
  73.     }
  74.     public function getDescription(): ?string
  75.     {
  76.         return $this->description;
  77.     }
  78.     public function setDescription(?string $description): static
  79.     {
  80.         $this->description $description;
  81.         return $this;
  82.     }
  83.     public function getType(): ?string
  84.     {
  85.         return $this->type;
  86.     }
  87.     public function setType(?string $type): static
  88.     {
  89.         $this->type $type;
  90.         return $this;
  91.     }
  92.     public function getDateCreation(): ?\DateTimeInterface
  93.     {
  94.         return $this->date_creation;
  95.     }
  96.     public function setDateCreation(?\DateTimeInterface $date_creation): static
  97.     {
  98.         $this->date_creation $date_creation;
  99.         return $this;
  100.     }
  101.     public function getDateUpdate(): ?\DateTimeInterface
  102.     {
  103.         return $this->date_update;
  104.     }
  105.     public function setDateUpdate(?\DateTimeInterface $date_update): static
  106.     {
  107.         $this->date_update $date_update;
  108.         return $this;
  109.     }
  110.     public function getPrix(): ?string
  111.     {
  112.         return $this->prix;
  113.     }
  114.     public function setPrix(?string $prix): static
  115.     {
  116.         $this->prix $prix;
  117.         return $this;
  118.     }
  119.     public function getUnite(): ?string
  120.     {
  121.         return $this->unite;
  122.     }
  123.     public function setUnite(?string $unite): static
  124.     {
  125.         $this->unite $unite;
  126.         return $this;
  127.     }
  128.     public function getEtat(): ?int
  129.     {
  130.         return $this->etat;
  131.     }
  132.     public function setEtat(?int $etat): static
  133.     {
  134.         $this->etat $etat;
  135.         return $this;
  136.     }
  137.     public function getDestination(): ?array
  138.     {
  139.         return $this->destination;
  140.     }
  141.     public function setDestination(?array $destination): static
  142.     {
  143.         $this->destination $destination;
  144.         return $this;
  145.     }
  146.     public function getEntreprisesCibles(): ?array
  147.     {
  148.         return $this->entreprises_cibles;
  149.     }
  150.     public function setEntreprisesCibles(?array $entreprises_cibles): static
  151.     {
  152.         $this->entreprises_cibles $entreprises_cibles;
  153.         return $this;
  154.     }
  155.     public function getPaysCibles(): ?array
  156.     {
  157.         return $this->pays_cibles;
  158.     }
  159.     public function setPaysCibles(?array $pays_cibles): static
  160.     {
  161.         $this->pays_cibles $pays_cibles;
  162.         return $this;
  163.     }
  164.     public function getVillesCibles(): ?array
  165.     {
  166.         return $this->villes_cibles;
  167.     }
  168.     public function setVillesCibles(?array $villes_cibles): static
  169.     {
  170.         $this->villes_cibles $villes_cibles;
  171.         return $this;
  172.     }
  173.     public function getCpCibles(): ?array
  174.     {
  175.         return $this->cp_cibles;
  176.     }
  177.     public function setCpCibles(?array $cp_cibles): static
  178.     {
  179.         $this->cp_cibles $cp_cibles;
  180.         return $this;
  181.     }
  182.     public function getTaillesEntrepriseCible(): ?array
  183.     {
  184.         return $this->tailles_entreprise_cible;
  185.     }
  186.     public function setTaillesEntrepriseCible(?array $tailles_entreprise_cible): static
  187.     {
  188.         $this->tailles_entreprise_cible $tailles_entreprise_cible;
  189.         return $this;
  190.     }
  191.     public function getPeriodicite(): ?string
  192.     {
  193.         return $this->periodicite;
  194.     }
  195.     public function setPeriodicite(?string $periodicite): static
  196.     {
  197.         $this->periodicite $periodicite;
  198.         return $this;
  199.     }
  200.     public function getDure(): ?string
  201.     {
  202.         return $this->dure;
  203.     }
  204.     public function setDure(?string $dure): static
  205.     {
  206.         $this->dure $dure;
  207.         return $this;
  208.     }
  209.     public function getBonnusGeo(): ?string
  210.     {
  211.         return $this->bonnus_geo;
  212.     }
  213.     public function setBonnusGeo(?string $bonnus_geo): static
  214.     {
  215.         $this->bonnus_geo $bonnus_geo;
  216.         return $this;
  217.     }
  218.     public function getBonnusEvent(): ?string
  219.     {
  220.         return $this->bonnus_event;
  221.     }
  222.     public function setBonnusEvent(?string $bonnus_event): static
  223.     {
  224.         $this->bonnus_event $bonnus_event;
  225.         return $this;
  226.     }
  227.     public function getBonnusPub(): ?string
  228.     {
  229.         return $this->bonnus_pub;
  230.     }
  231.     public function setBonnusPub(?string $bonnus_pub): static
  232.     {
  233.         $this->bonnus_pub $bonnus_pub;
  234.         return $this;
  235.     }
  236.     public function getRegimeTva(): ?string
  237.     {
  238.         return $this->regime_tva;
  239.     }
  240.     public function setRegimeTva(?string $regime_tva): static
  241.     {
  242.         $this->regime_tva $regime_tva;
  243.         return $this;
  244.     }
  245.     public function getFrequence(): ?string
  246.     {
  247.         return $this->frequence;
  248.     }
  249.     public function setFrequence(string $frequence): static
  250.     {
  251.         $this->frequence $frequence;
  252.         return $this;
  253.     }
  254.     public function isFormuleFirstPage(): ?bool
  255.     {
  256.         return $this->formule_first_page;
  257.     }
  258.     public function setFormuleFirstPage(?bool $formule_first_page): static
  259.     {
  260.         $this->formule_first_page $formule_first_page;
  261.         return $this;
  262.     }
  263.     public function getDureeBonnusEvent(): ?string
  264.     {
  265.         return $this->Duree_bonnus_event;
  266.     }
  267.     public function setDureeBonnusEvent(?string $Duree_bonnus_event): static
  268.     {
  269.         $this->Duree_bonnus_event $Duree_bonnus_event;
  270.         return $this;
  271.     }
  272.     public function getDureeBonnusPub(): ?string
  273.     {
  274.         return $this->duree_bonnus_pub;
  275.     }
  276.     public function setDureeBonnusPub(?string $duree_bonnus_pub): static
  277.     {
  278.         $this->duree_bonnus_pub $duree_bonnus_pub;
  279.         return $this;
  280.     }
  281. }