créer follow up des villes
This commit is contained in:
parent
10a984738f
commit
4b4a46c3f7
3 changed files with 166 additions and 0 deletions
|
@ -98,6 +98,9 @@ class Stats
|
|||
#[ORM\Column(type: Types::DECIMAL, precision: 15, scale: 2, nullable: true)]
|
||||
private ?string $budget_annuel = null;
|
||||
|
||||
#[ORM\ManyToOne(inversedBy: 'stats')]
|
||||
private ?CityFollowUp $cityFollowUps = null;
|
||||
|
||||
public function getCTCurlBase(): ?string
|
||||
{
|
||||
$base = 'https://complete-tes-commerces.fr/';
|
||||
|
@ -565,6 +568,18 @@ class Stats
|
|||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getCityFollowUps(): ?CityFollowUp
|
||||
{
|
||||
return $this->cityFollowUps;
|
||||
}
|
||||
|
||||
public function setCityFollowUps(?CityFollowUp $cityFollowUps): static
|
||||
{
|
||||
$this->cityFollowUps = $cityFollowUps;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue