<?phpnamespace App\Entity;use App\Repository\CustomerContactRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=CustomerContactRepository::class) */class CustomerContact{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(name="idCustomerContact", type="integer") */ private $id; /** * @ORM\Column(type="integer") */ private $idContactType; /** * @ORM\Column(type="integer") */ private $idCustomer; /** * @ORM\Column(type="string", length=45, nullable=true) */ private $phone; /** * @ORM\Column(type="string", length=45, nullable=true) */ private $email; /** * @ORM\Column(type="string", length=45, nullable=true) */ private $lastName; /** * @ORM\Column(type="string", length=45, nullable=true) */ private $firstName; public function getId(): ?int { return $this->id; } public function getIdContactType(): ?int { return $this->idContactType; } public function setIdContactType(int $idContactType): self { $this->idContactType = $idContactType; return $this; } public function getIdCustomer(): ?int { return $this->idCustomer; } public function setIdCustomer(int $idCustomer): self { $this->idCustomer = $idCustomer; return $this; } public function getPhone(): ?string { return $this->phone; } public function setPhone(?string $phone): self { $this->phone = $phone; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(?string $email): self { $this->email = $email; return $this; } public function getLastName(): ?string { return $this->lastName; } public function setLastName(?string $lastName): self { $this->lastName = $lastName; return $this; } public function getFirstName(): ?string { return $this->firstName; } public function setFirstName(?string $firstName): self { $this->firstName = $firstName; return $this; }}