src/Entity/PromoCode.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PromoCodeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=PromoCodeRepository::class)
  9.  */
  10. class PromoCode
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $name;
  22.     /**
  23.      * @ORM\Column(type="float", nullable=true)
  24.      */
  25.     private $purcent;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $type;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $code;
  34.     /**
  35.      * @ORM\Column(type="datetime", nullable=true)
  36.      */
  37.     private $dateDebut;
  38.     /**
  39.      * @ORM\Column(type="datetime", nullable=true)
  40.      */
  41.     private $dateFin;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $service;
  46.     /**
  47.      * @ORM\OneToMany(targetEntity=RDV::class, mappedBy="codePromo")
  48.      */
  49.     private $rDVs;
  50.     public function __construct()
  51.     {
  52.         $this->rDVs = new ArrayCollection();
  53.     }
  54.     public function __toString()
  55.     {
  56.         return (string) $this->code;
  57.     }
  58.     public function getId(): ?int
  59.     {
  60.         return $this->id;
  61.     }
  62.     public function getName(): ?string
  63.     {
  64.         return $this->name;
  65.     }
  66.     public function setName(?string $name): self
  67.     {
  68.         $this->name $name;
  69.         return $this;
  70.     }
  71.     public function getPurcent(): ?float
  72.     {
  73.         return $this->purcent;
  74.     }
  75.     public function setPurcent(?float $purcent): self
  76.     {
  77.         $this->purcent $purcent;
  78.         return $this;
  79.     }
  80.     public function getType(): ?string
  81.     {
  82.         return $this->type;
  83.     }
  84.     public function setType(?string $type): self
  85.     {
  86.         $this->type $type;
  87.         return $this;
  88.     }
  89.     public function getCode(): ?string
  90.     {
  91.         return $this->code;
  92.     }
  93.     public function setCode(?string $code): self
  94.     {
  95.         $this->code $code;
  96.         return $this;
  97.     }
  98.     public function getDateDebut(): ?\DateTimeInterface
  99.     {
  100.         return $this->dateDebut;
  101.     }
  102.     public function setDateDebut(?\DateTimeInterface $dateDebut): self
  103.     {
  104.         $this->dateDebut $dateDebut;
  105.         return $this;
  106.     }
  107.     public function getDateFin(): ?\DateTimeInterface
  108.     {
  109.         return $this->dateFin;
  110.     }
  111.     public function setDateFin(?\DateTimeInterface $dateFin): self
  112.     {
  113.         $this->dateFin $dateFin;
  114.         return $this;
  115.     }
  116.     public function getService(): ?string
  117.     {
  118.         return $this->service;
  119.     }
  120.     public function setService(?string $service): self
  121.     {
  122.         $this->service $service;
  123.         return $this;
  124.     }
  125.     /**
  126.      * @return Collection<int, RDV>
  127.      */
  128.     public function getRDVs(): Collection
  129.     {
  130.         return $this->rDVs;
  131.     }
  132.     public function addRDV(RDV $rDV): self
  133.     {
  134.         if (!$this->rDVs->contains($rDV)) {
  135.             $this->rDVs[] = $rDV;
  136.             $rDV->setCodePromo($this);
  137.         }
  138.         return $this;
  139.     }
  140.     public function removeRDV(RDV $rDV): self
  141.     {
  142.         if ($this->rDVs->removeElement($rDV)) {
  143.             // set the owning side to null (unless already changed)
  144.             if ($rDV->getCodePromo() === $this) {
  145.                 $rDV->setCodePromo(null);
  146.             }
  147.         }
  148.         return $this;
  149.     }
  150. }