Update Finding
This commit is contained in:
parent
5e3b4da7c0
commit
6798fe4c38
@ -21,9 +21,6 @@ class Finding implements \JsonSerializable
|
|||||||
#[ORM\Column(length: 200, nullable: true, name: 'materia')]
|
#[ORM\Column(length: 200, nullable: true, name: 'materia')]
|
||||||
private ?string $material = null;
|
private ?string $material = null;
|
||||||
|
|
||||||
#[ORM\Column(length: 30, nullable: true, name: 'inventario')]
|
|
||||||
private ?string $inventory = null;
|
|
||||||
|
|
||||||
#[ORM\Column(length: 100, nullable: true, name: 'luogo_rinv')]
|
#[ORM\Column(length: 100, nullable: true, name: 'luogo_rinv')]
|
||||||
private ?string $place = null;
|
private ?string $place = null;
|
||||||
|
|
||||||
@ -102,18 +99,6 @@ class Finding implements \JsonSerializable
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getInventory(): ?string
|
|
||||||
{
|
|
||||||
return $this->inventory;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setInventory(?string $inventory): static
|
|
||||||
{
|
|
||||||
$this->inventory = $inventory;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getPlace(): ?string
|
public function getPlace(): ?string
|
||||||
{
|
{
|
||||||
return $this->place;
|
return $this->place;
|
||||||
@ -277,7 +262,6 @@ class Finding implements \JsonSerializable
|
|||||||
'object' => $this->object,
|
'object' => $this->object,
|
||||||
'material' => $this->material,
|
'material' => $this->material,
|
||||||
'measurements' => $this->measurements,
|
'measurements' => $this->measurements,
|
||||||
'inventory' => $this->inventory,
|
|
||||||
'place' => $this->place,
|
'place' => $this->place,
|
||||||
'year' => $this->year,
|
'year' => $this->year,
|
||||||
'dating' => $this->dating,
|
'dating' => $this->dating,
|
||||||
|
Loading…
Reference in New Issue
Block a user