src/Entity/Dealer.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DealerRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. /**
  9.  * @ORM\Entity(repositoryClass=DealerRepository::class)
  10.  */
  11. class Dealer
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $title;
  23.     /**
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private $phone;
  27.     /**
  28.      * @ORM\Column(type="string", length=255)
  29.      */
  30.     private $email;
  31.     /**
  32.      * @ORM\Column(type="string", length=255)
  33.      */
  34.     private $promoCode;
  35.     /**
  36.      * @ORM\Column(type="integer")
  37.      */
  38.     private $percentage;
  39.     
  40.     /**
  41.      * @ORM\Column(type="boolean", options={"default":"1"})
  42.      */
  43.     private $statut true;
  44.     
  45.     /**
  46.      * @ORM\OneToMany(targetEntity=Order::class, mappedBy="dealer")
  47.      */
  48.     private $orders;
  49.     /**
  50.      * @ORM\Column(type="datetime_immutable")
  51.      * @Gedmo\Timestampable(on="create")
  52.      */
  53.     private $created_at;
  54.     /**
  55.      * @ORM\Column(type="datetime_immutable")
  56.      * @Gedmo\Timestampable(on="update")
  57.      */
  58.     private $updated_at;
  59.     public function __construct()
  60.     {
  61.         $this->orders = new ArrayCollection();
  62.     }
  63.     public function getId(): ?int
  64.     {
  65.         return $this->id;
  66.     }
  67.     public function getTitle(): ?string
  68.     {
  69.         return $this->title;
  70.     }
  71.     public function setTitle(string $title): self
  72.     {
  73.         $this->title $title;
  74.         return $this;
  75.     }
  76.     public function getPhone(): ?string
  77.     {
  78.         return $this->phone;
  79.     }
  80.     public function setPhone(string $phone): self
  81.     {
  82.         $this->phone $phone;
  83.         return $this;
  84.     }
  85.     public function getEmail(): ?string
  86.     {
  87.         return $this->email;
  88.     }
  89.     public function setEmail(string $email): self
  90.     {
  91.         $this->email $email;
  92.         return $this;
  93.     }
  94.     public function getPromoCode(): ?string
  95.     {
  96.         return $this->promoCode;
  97.     }
  98.     public function setPromoCode(string $promoCode): self
  99.     {
  100.         $this->promoCode $promoCode;
  101.         return $this;
  102.     }
  103.     public function getPercentage(): ?int
  104.     {
  105.         return $this->percentage;
  106.     }
  107.     public function setPercentage(int $percentage): self
  108.     {
  109.         $this->percentage $percentage;
  110.         return $this;
  111.     }
  112.     public function isStatut(): ?bool
  113.     {
  114.         return $this->statut;
  115.     }
  116.     public function setStatut(bool $statut): self
  117.     {
  118.         $this->statut $statut;
  119.         return $this;
  120.     }
  121.     
  122.     /**
  123.      * @return Collection<int, Order>
  124.      */
  125.     public function getOrders(): Collection
  126.     {
  127.         return $this->orders;
  128.     }
  129.     public function addOrder(Order $order): self
  130.     {
  131.         if (!$this->orders->contains($order)) {
  132.             $this->orders[] = $order;
  133.             $order->setDealer($this);
  134.         }
  135.         return $this;
  136.     }
  137.     public function removeOrder(Order $order): self
  138.     {
  139.         if ($this->orders->removeElement($order)) {
  140.             // set the owning side to null (unless already changed)
  141.             if ($order->getDealer() === $this) {
  142.                 $order->setDealer(null);
  143.             }
  144.         }
  145.         return $this;
  146.     }
  147.     public function getCreatedAt(): ?\DateTimeImmutable
  148.     {
  149.         return $this->created_at;
  150.     }
  151.     public function setCreatedAt(\DateTimeImmutable $created_at): self
  152.     {
  153.         $this->created_at $created_at;
  154.         return $this;
  155.     }
  156.     public function getUpdatedAt(): ?\DateTimeImmutable
  157.     {
  158.         return $this->updated_at;
  159.     }
  160.     public function setUpdatedAt(\DateTimeImmutable $updated_at): self
  161.     {
  162.         $this->updated_at $updated_at;
  163.         return $this;
  164.     }
  165. }