id; } /** * Set userId * * @param integer $userId * @return EntityUserCourseCategory */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set title * * @param string $title * @return EntityUserCourseCategory */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set sort * * @param integer $sort * @return EntityUserCourseCategory */ public function setSort($sort) { $this->sort = $sort; return $this; } /** * Get sort * * @return integer */ public function getSort() { return $this->sort; } }