title = $title ?? ''; $this->slug = $slug; } /** * 获取权限标题 */ public function getTitle(): string { return $this->title; } /** * 获取权限标识 */ public function getSlug(): ?string { return $this->slug; } }