|
|
@@ -49,6 +49,9 @@ class PublicEvent
|
|
|
#[ORM\Column]
|
|
|
private string $uuid;
|
|
|
|
|
|
+ #[ORM\Column(type: 'integer')]
|
|
|
+ private int $opentalentId;
|
|
|
+
|
|
|
#[ORM\Column(type: 'integer')]
|
|
|
private int $organizationId;
|
|
|
|
|
|
@@ -166,6 +169,17 @@ class PublicEvent
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
+ public function getOpentalentId(): int
|
|
|
+ {
|
|
|
+ return $this->opentalentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public function setOpentalentId(int $opentalentId): self
|
|
|
+ {
|
|
|
+ $this->opentalentId = $opentalentId;
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
public function getName(): string
|
|
|
{
|
|
|
return $this->name;
|