userSenderId = $userSenderId; return $this; } /** * Get userSenderId. * * @return int */ public function getUserSenderId() { return $this->userSenderId; } /** * Set userReceiverId. * * @param int $userReceiverId * * @return Message */ public function setUserReceiverId($userReceiverId) { $this->userReceiverId = $userReceiverId; return $this; } /** * Get userReceiverId. * * @return int */ public function getUserReceiverId() { return $this->userReceiverId; } /** * Set msgStatus. * * @param bool $msgStatus * * @return Message */ public function setMsgStatus($msgStatus) { $this->msgStatus = $msgStatus; return $this; } /** * Get msgStatus. * * @return bool */ public function getMsgStatus() { return $this->msgStatus; } /** * Set sendDate. * * @param \DateTime $sendDate * * @return Message */ public function setSendDate($sendDate) { $this->sendDate = $sendDate; return $this; } /** * Get sendDate. * * @return \DateTime */ public function getSendDate() { return $this->sendDate; } /** * Set title. * * @param string $title * * @return Message */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } /** * Set content. * * @param string $content * * @return Message */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content. * * @return string */ public function getContent() { return $this->content; } /** * Set groupId. * * @param int $groupId * * @return Message */ public function setGroupId($groupId) { $this->groupId = $groupId; return $this; } /** * Get groupId. * * @return int */ public function getGroupId() { return $this->groupId; } /** * Set parentId. * * @param int $parentId * * @return Message */ public function setParentId($parentId) { $this->parentId = $parentId; return $this; } /** * Get parentId. * * @return int */ public function getParentId() { return $this->parentId; } /** * Set updateDate. * * @param \DateTime $updateDate * * @return Message */ public function setUpdateDate($updateDate) { $this->updateDate = $updateDate; return $this; } /** * Get updateDate. * * @return \DateTime */ public function getUpdateDate() { return $this->updateDate; } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Set votes. * * @param int $votes * * @return Message */ public function setVotes($votes) { $this->votes = $votes; return $this; } /** * Get votes. * * @return int */ public function getVotes() { return $this->votes; } }