<?phpnamespace App\Entity;use App\Repository\AdressesRepository;use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=AdressesRepository::class) * @Auditable() */class Adresses{ /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=50) */ private $numero; /** * @ORM\Column(type="string", length=255) */ private $avenue; /** * @ORM\ManyToOne(targetEntity=Pcode::class) */ private $quartier; /** * @ORM\ManyToOne(targetEntity=Pcode::class) */ private $commune; /** * @ORM\ManyToOne(targetEntity=Pcode::class) */ private $ville; /** * @ORM\ManyToOne(targetEntity=Pcode::class) */ private $province; /** * @ORM\Column(type="boolean") */ private $isDeleted; /** * @ORM\Column(type="integer", nullable=true) */ private $status; public function getId(): ?int { return $this->id; } public function getNumero(): ?string { return $this->numero; } public function setNumero(string $numero): self { $this->numero = $numero; return $this; } public function getAvenue(): ?string { return $this->avenue; } public function setAvenue(string $avenue): self { $this->avenue = $avenue; return $this; } public function getQuartier(): ?Pcode { return $this->quartier; } public function setQuartier(?Pcode $quartier): self { $this->quartier = $quartier; return $this; } public function getCommune(): ?Pcode { return $this->commune; } public function setCommune(?Pcode $commune): self { $this->commune = $commune; return $this; } public function getVille(): ?Pcode { return $this->ville; } public function setVille(?Pcode $ville): self { $this->ville = $ville; return $this; } public function getProvince(): ?Pcode { return $this->province; } public function setProvince(?Pcode $province): self { $this->province = $province; return $this; } public function getIsDeleted(): ?bool { return $this->isDeleted; } public function setIsDeleted(bool $isDeleted): self { $this->isDeleted = $isDeleted; return $this; } public function getStatus(): ?int { return $this->status; } public function setStatus(?int $status): self { $this->status = $status; return $this; }}