From f99f6d5240e4cea9dba5cfd77467e8103c3613d4 Mon Sep 17 00:00:00 2001 From: nobohan Date: Mon, 29 Aug 2022 15:21:05 +0200 Subject: [PATCH] export: add a geographical unit entity --- .../Entity/GeographicalUnit.php | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/Bundle/ChillMainBundle/Entity/GeographicalUnit.php diff --git a/src/Bundle/ChillMainBundle/Entity/GeographicalUnit.php b/src/Bundle/ChillMainBundle/Entity/GeographicalUnit.php new file mode 100644 index 000000000..9e119e30d --- /dev/null +++ b/src/Bundle/ChillMainBundle/Entity/GeographicalUnit.php @@ -0,0 +1,72 @@ +id; + } + + public function getLayerName(): ?string + { + return $this->layerName; + } + + public function getUnitName(): ?string + { + return $this->unitName; + } + + public function setLayerName(?string $layerName): self + { + $this->layerName = $layerName; + + return $this; + } + + public function setUnitName(?string $unitName): self + { + $this->unitName = $unitName; + + return $this; + } +}