<?php
namespace App\Entity;
use App\Repository\RenommagePosteRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=RenommagePosteRepository::class)
*/
class RenommagePoste
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="integer")
*/
private $numeroClient;
/**
* @ORM\Column(type="string", length=50)
*/
private $numeroPoste;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $nomPoste;
/**
* @ORM\Column(type="datetime", nullable=false)
*/
private $createdAt;
public function getId(): ?int
{
return $this->id;
}
public function getNumeroClient(): ?int
{
return $this->numeroClient;
}
public function setNumeroClient(int $numeroClient): self
{
$this->numeroClient = $numeroClient;
return $this;
}
public function getNumeroPoste(): ?string
{
return $this->numeroPoste;
}
public function setNumeroPoste(string $numeroPoste): self
{
$this->numeroPoste = $numeroPoste;
return $this;
}
public function getNomPoste(): ?string
{
return $this->nomPoste;
}
public function setNomPoste(?string $nomPoste): self
{
$this->nomPoste = $nomPoste;
return $this;
}
public function getCreatedAt(): ?\DateTimeInterface
{
return $this->createdAt;
}
public function setCreatedAt(\DateTimeInterface $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
}