<?php
namespace App\Entity;
use App\Repository\CustomerProfilRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=CustomerProfilRepository::class)
*/
class CustomerProfil
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(name="idCustomerProfil",type="integer")
*/
private $id;
/**
* @ORM\Column(type="integer")
*/
private $idCustomerProfil;
/**
* @ORM\Column(type="string", length=45, nullable=true)
*/
private $profil;
public function getId(): ?int
{
return $this->id;
}
public function getIdCustomerProfil(): ?string
{
return $this->idCustomerProfil;
}
public function setIdCustomerProfil(string $idCustomerProfil): self
{
$this->idCustomerProfil = $idCustomerProfil;
return $this;
}
public function getProfil(): ?string
{
return $this->profil;
}
public function setProfil(?string $profil): self
{
$this->profil = $profil;
return $this;
}
}