[export][person] Feature: allow to filter accompanying period by

geographical unit
This commit is contained in:
2022-10-04 15:07:07 +02:00
parent 52435f5331
commit fc567868c1
4 changed files with 164 additions and 49 deletions

View File

@@ -53,20 +53,36 @@ class GeographicalUnit
return $this->id;
}
public function getLayerName(): ?string
{
return $this->layerName;
}
public function getUnitName(): ?string
{
return $this->unitName;
}
public function setLayerName(?string $layerName): self
/**
* @return GeographicalUnitLayer|null
*/
public function getLayer(): ?GeographicalUnitLayer
{
$this->layerName = $layerName;
return $this->layer;
}
/**
* @param string $unitRefId
* @return GeographicalUnit
*/
public function setUnitRefId(string $unitRefId): GeographicalUnit
{
$this->unitRefId = $unitRefId;
return $this;
}
/**
* @param GeographicalUnitLayer|null $layer
* @return GeographicalUnit
*/
public function setLayer(?GeographicalUnitLayer $layer): GeographicalUnit
{
$this->layer = $layer;
return $this;
}