<?phpnamespace App\Entity;use App\Repositor\App\SuiviConsoAlertHistoryRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=SuiviConsoAlertHistoryRepository::class) */class SuiviConsoAlertHistory{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=50) */ private $customerNumber; /** * @ORM\Column(type="string", length=50) */ private $postNumber; /** * @ORM\Column(type="float") */ private $threshold; /** * @ORM\Column(type="string", length=5) */ private $periodicity; /** * @ORM\Column(type="datetime") */ private $concernedPeriod; /** * @ORM\Column(type="datetime") */ private $sentAt; public function getId(): ?int { return $this->id; } public function getCustomerNumber(): ?string { return $this->customerNumber; } public function setCustomerNumber(string $customerNumber): self { $this->customerNumber = $customerNumber; return $this; } public function getPostNumber(): ?string { return $this->postNumber; } public function setPostNumber(string $postNumber): self { $this->postNumber = $postNumber; return $this; } public function getThreshold(): ?float { return $this->threshold; } public function setThreshold(float $threshold): self { $this->threshold = $threshold; return $this; } public function getPeriodicity(): ?string { return $this->periodicity; } public function setPeriodicity(string $periodicity): self { $this->periodicity = $periodicity; return $this; } public function getConcernedPeriod(): ?\DateTimeInterface { return $this->concernedPeriod; } public function setConcernedPeriod(\DateTimeInterface $concernedPeriod): self { $this->concernedPeriod = $concernedPeriod; return $this; } public function getSentAt(): ?\DateTimeInterface { return $this->sentAt; } public function setSentAt(\DateTimeInterface $sentAt): self { $this->sentAt = $sentAt; return $this; }}