null, 'worker_uid' => null, 'category' => '', 'title' => '', 'status' => '', 'content' => '' ]; public function __construct(array|null $data = null) { parent::__construct($data); } public function getUserUid(): int|null { return $this->user_uid ?? null; } public function getWorkerUid(): int|null { return $this->worker_uid ?? null; } public function getCaregory(): string { return $this->category ?? ""; } }