mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-06-20 01:44:42 +02:00
list notes
This commit is contained in:
parent
0f5ff6ed45
commit
cb90be8ff2
10 changed files with 119 additions and 36 deletions
|
@ -79,6 +79,9 @@ class Place
|
|||
#[ORM\Column(nullable: true)]
|
||||
private ?string $main_tag = null;
|
||||
|
||||
#[ORM\Column(length: 255, nullable: true)]
|
||||
private ?string $note_content = null;
|
||||
|
||||
public function getMainTag(): ?string
|
||||
{
|
||||
return $this->main_tag;
|
||||
|
@ -416,4 +419,16 @@ class Place
|
|||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getNoteContent(): ?string
|
||||
{
|
||||
return $this->note_content;
|
||||
}
|
||||
|
||||
public function setNoteContent(?string $note_content): static
|
||||
{
|
||||
$this->note_content = $note_content;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue