workId = $workId; return $this; } /** * Get workId * * @return integer */ public function getWorkId() { return $this->workId; } /** * Set cId * * @param integer $cId * @return CStudentPublicationComment */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set comment * * @param string $comment * @return CStudentPublicationComment */ public function setComment($comment) { $this->comment = $comment; return $this; } /** * Get comment * * @return string */ public function getComment() { return $this->comment; } /** * Set file * * @param string $file * @return CStudentPublicationComment */ public function setFile($file) { $this->file = $file; return $this; } /** * Get file * * @return string */ public function getFile() { return $this->file; } /** * Set userId * * @param integer $userId * @return CStudentPublicationComment */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set sentAt * * @param \DateTime $sentAt * @return CStudentPublicationComment */ public function setSentAt($sentAt) { $this->sentAt = $sentAt; return $this; } /** * Get sentAt * * @return \DateTime */ public function getSentAt() { return $this->sentAt; } /** * Get id * * @return integer */ public function getId() { return $this->id; } }