Update Site

This commit is contained in:
Nicolò P 2024-12-01 15:42:28 +01:00
parent 042b94f1af
commit b55f968201

View File

@ -59,6 +59,9 @@ class Site implements JsonSerializable
#[ORM\Column(name: 'luogo_custodia_mat', type: Types::TEXT, nullable: true)] #[ORM\Column(name: 'luogo_custodia_mat', type: Types::TEXT, nullable: true)]
private ?string $conservationPlace = null; private ?string $conservationPlace = null;
#[ORM\Column(name: 'documenti', type: Types::TEXT, nullable: true)]
private ?string $documentation = null;
#[ORM\Column(name: 'proprietà', length: 255, nullable: true)] #[ORM\Column(name: 'proprietà', length: 255, nullable: true)]
private ?string $ownedBy = null; private ?string $ownedBy = null;
@ -336,6 +339,18 @@ class Site implements JsonSerializable
return $this; return $this;
} }
public function getDocumentation(): ?string
{
return $this->documentation;
}
public function setDocumentation(string $documentation): static
{
$this->documentation = $documentation;
return $this;
}
public function getTechniques(): ?string public function getTechniques(): ?string
{ {
return $this->techniques; return $this->techniques;
@ -439,6 +454,7 @@ class Site implements JsonSerializable
'materials' => $this->materials, 'materials' => $this->materials,
'conservationState' => $this->conservationState, 'conservationState' => $this->conservationState,
'conservationPlace' => $this->conservationPlace, 'conservationPlace' => $this->conservationPlace,
'documentation' => $this->documentation,
'description' => $this->description, 'description' => $this->description,
'shortDescription' => $this->shortDescription, 'shortDescription' => $this->shortDescription,
'ownedBy' => $this->ownedBy, 'ownedBy' => $this->ownedBy,