WIP: Implement crm selections

This commit is contained in:
Björn Fromme
2023-10-11 14:35:40 +02:00
parent 7084e1528e
commit b472dab6c8
6 changed files with 103 additions and 5 deletions
+15
View File
@@ -128,6 +128,9 @@ class Teamer implements TimestampableEntityInterface
#[ORM\Column(length: 2, nullable: true)]
private ?string $size = null;
#[ORM\Column(nullable: true)]
private ?array $crmSelections = null;
public function __construct()
{
$this->uuid = Uuid::v4();
@@ -720,4 +723,16 @@ class Teamer implements TimestampableEntityInterface
return $this;
}
public function getCrmSelections(): ?array
{
return $this->crmSelections;
}
public function setCrmSelections(?array $crmSelections): static
{
$this->crmSelections = $crmSelections;
return $this;
}
}