Add FloorAltitude & maj API > basefunction except edit are fine, representation take only cylinder and polySurface

This commit is contained in:
Kouril42
2023-02-02 18:14:25 +01:00
parent 250e186017
commit 0cb138d7d6
7 changed files with 222 additions and 177 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ class PolySurface
#[ORM\OneToMany(targetEntity: PlaneSurface::class, mappedBy: "polySurface")]
private $polysurfaceComponent;
#[ORM\ManyToOne(targetEntity: Place::class)]
#[ORM\ManyToOne(targetEntity: Place::class, inversedBy: "PolySurfaceRepresentation")]
private $place;
public function __construct()
@@ -71,5 +71,5 @@ class PolySurface
$this->place = $place;
return $this;
}
}
}