src/Flexy/ShopBundle/Entity/Customer/VisitOutside.php line 9

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Customer;
  3. use App\Flexy\ShopBundle\Repository\Customer\VisitOutsideRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassVisitOutsideRepository::class)]
  6. class VisitOutside
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $fistName null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $lastName null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $photo null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $phone null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $identity null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?\DateTimeImmutable $createAt null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $cardReference null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getFistName(): ?string
  31.     {
  32.         return $this->fistName;
  33.     }
  34.     public function setFistName(?string $fistName): static
  35.     {
  36.         $this->fistName $fistName;
  37.         return $this;
  38.     }
  39.     public function getLastName(): ?string
  40.     {
  41.         return $this->lastName;
  42.     }
  43.     public function setLastName(?string $lastName): static
  44.     {
  45.         $this->lastName $lastName;
  46.         return $this;
  47.     }
  48.     public function getPhoto(): ?string
  49.     {
  50.         return $this->photo;
  51.     }
  52.     public function setPhoto(?string $photo): static
  53.     {
  54.         $this->photo $photo;
  55.         return $this;
  56.     }
  57.     public function getPhone(): ?string
  58.     {
  59.         return $this->phone;
  60.     }
  61.     public function setPhone(?string $phone): static
  62.     {
  63.         $this->phone $phone;
  64.         return $this;
  65.     }
  66.     public function getIdentity(): ?string
  67.     {
  68.         return $this->identity;
  69.     }
  70.     public function setIdentity(?string $identity): static
  71.     {
  72.         $this->identity $identity;
  73.         return $this;
  74.     }
  75.     public function getCreateAt(): ?\DateTimeImmutable
  76.     {
  77.         return $this->createAt;
  78.     }
  79.     public function setCreateAt(?\DateTimeImmutable $createAt): static
  80.     {
  81.         $this->createAt $createAt;
  82.         return $this;
  83.     }
  84.     public function getCardReference(): ?string
  85.     {
  86.         return $this->cardReference;
  87.     }
  88.     public function setCardReference(?string $cardReference): static
  89.     {
  90.         $this->cardReference $cardReference;
  91.         return $this;
  92.     }
  93. }