ajout de stats sur le budget des villes

This commit is contained in:
Tykayn 2025-06-24 12:30:39 +02:00 committed by tykayn
parent 1973f85dd4
commit cd8369d08c
14 changed files with 901 additions and 186 deletions

View file

@ -95,6 +95,9 @@ class Stats
#[ORM\Column(nullable: true)]
private ?\DateTime $osm_data_date_max = null;
#[ORM\Column(type: Types::DECIMAL, precision: 15, scale: 2, nullable: true)]
private ?string $budget_annuel = null;
public function getCTCurlBase(): ?string
{
$base = 'https://complete-tes-commerces.fr/';
@ -538,6 +541,18 @@ class Stats
return $this;
}
public function getBudgetAnnuel(): ?string
{
return $this->budget_annuel;
}
public function setBudgetAnnuel(?string $budget_annuel): static
{
$this->budget_annuel = $budget_annuel;
return $this;
}
}