src/Flexy/ShopBundle/Entity/Customer/VisitOutside.php line 9
<?php
namespace App\Flexy\ShopBundle\Entity\Customer;
use App\Flexy\ShopBundle\Repository\Customer\VisitOutsideRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: VisitOutsideRepository::class)]
class VisitOutside
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $fistName = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $lastName = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $photo = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $phone = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $identity = null;
#[ORM\Column(nullable: true)]
private ?\DateTimeImmutable $createAt = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $cardReference = null;
public function getId(): ?int
{
return $this->id;
}
public function getFistName(): ?string
{
return $this->fistName;
}
public function setFistName(?string $fistName): static
{
$this->fistName = $fistName;
return $this;
}
public function getLastName(): ?string
{
return $this->lastName;
}
public function setLastName(?string $lastName): static
{
$this->lastName = $lastName;
return $this;
}
public function getPhoto(): ?string
{
return $this->photo;
}
public function setPhoto(?string $photo): static
{
$this->photo = $photo;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(?string $phone): static
{
$this->phone = $phone;
return $this;
}
public function getIdentity(): ?string
{
return $this->identity;
}
public function setIdentity(?string $identity): static
{
$this->identity = $identity;
return $this;
}
public function getCreateAt(): ?\DateTimeImmutable
{
return $this->createAt;
}
public function setCreateAt(?\DateTimeImmutable $createAt): static
{
$this->createAt = $createAt;
return $this;
}
public function getCardReference(): ?string
{
return $this->cardReference;
}
public function setCardReference(?string $cardReference): static
{
$this->cardReference = $cardReference;
return $this;
}
}