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

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