id; } /** * Set userId * * @param integer $userId * @return EntityUserRelUser */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set friendUserId * * @param integer $friendUserId * @return EntityUserRelUser */ 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 EntityUserRelUser */ 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 EntityUserRelUser */ public function setLastEdit($lastEdit) { $this->lastEdit = $lastEdit; return $this; } /** * Get lastEdit * * @return \DateTime */ public function getLastEdit() { return $this->lastEdit; } }