src/Flexy/ShopBundle/Entity/Customer/Visit.php line 13

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Customer;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Flexy\ShopBundle\Entity\Store\Store;
  5. use App\Repository\Flexy\ShopBundle\Entity\Customer\VisitRepository;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassVisitRepository::class)]
  9. #[ApiResource]
  10. class Visit
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  17.     private ?\DateTimeInterface $createdAt null;
  18.     #[ORM\ManyToOne(inversedBy'visits')]
  19.     private ?Customer $customer null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $cardReference null;
  22.     #[ORM\ManyToOne(inversedBy'visits')]
  23.     private ?Store $store null;
  24.     #[ORM\Column(nullabletrue)]
  25.     private ?bool $manual null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getCreatedAt(): ?\DateTimeInterface
  31.     {
  32.         return $this->createdAt;
  33.     }
  34.     public function setCreatedAt(?\DateTimeInterface $createdAt): static
  35.     {
  36.         $this->createdAt $createdAt;
  37.         return $this;
  38.     }
  39.     public function getCustomer(): ?Customer
  40.     {
  41.         return $this->customer;
  42.     }
  43.     public function setCustomer(?Customer $customer): static
  44.     {
  45.         $this->customer $customer;
  46.         return $this;
  47.     }
  48.     public function getCardReference(): ?string
  49.     {
  50.         return $this->cardReference;
  51.     }
  52.     public function setCardReference(?string $cardReference): static
  53.     {
  54.         $this->cardReference $cardReference;
  55.         return $this;
  56.     }
  57.     public function getStore(): ?Store
  58.     {
  59.         return $this->store;
  60.     }
  61.     public function setStore(?Store $store): static
  62.     {
  63.         $this->store $store;
  64.         return $this;
  65.     }
  66.     public function isManual(): ?bool
  67.     {
  68.         return $this->manual;
  69.     }
  70.     public function setManual(?bool $manual): static
  71.     {
  72.         $this->manual $manual;
  73.         return $this;
  74.     }
  75. }