userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set friendUserId * * @param integer $friendUserId * @return UserRelUser */ public function setFriendUserId($friendUserId) { $this->friendUserId = $friendUserId; return $this; } /** * Get friendUserId * * @return integer */ public function getFriendUserId() { return $this->friendUserId; } /** * Set relationType * * @param integer $relationType * @return UserRelUser */ public function setRelationType($relationType) { $this->relationType = $relationType; return $this; } /** * Get relationType * * @return integer */ public function getRelationType() { return $this->relationType; } /** * Set lastEdit * * @param \DateTime $lastEdit * @return UserRelUser */ public function setLastEdit($lastEdit) { $this->lastEdit = $lastEdit; return $this; } /** * Get lastEdit * * @return \DateTime */ public function getLastEdit() { return $this->lastEdit; } /** * Get id * * @return integer */ public function getId() { return $this->id; } }