id; } /** * Set categoryId * * @param integer $categoryId * @return CurriculumRelUser */ public function setCategoryId($categoryId) { $this->categoryId = $categoryId; return $this; } /** * Get categoryId * * @return integer */ public function getCategoryId() { return $this->categoryId; } /** * Set userId * * @param integer $userId * @return CurriculumRelUser */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set score * * @param integer $score * @return CurriculumRelUser */ public function setScore($score) { $this->score = $score; return $this; } /** * Get score * * @return integer */ public function getScore() { return $this->score; } }