You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
221 lines
3.5 KiB
221 lines
3.5 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CourseBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* CStudentPublicationComment
|
|
*
|
|
* @ORM\Table(name="c_student_publication_comment")
|
|
* @ORM\Entity
|
|
*/
|
|
class CStudentPublicationComment
|
|
{
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="iid", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
*/
|
|
private $iid;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="c_id", type="integer")
|
|
*/
|
|
private $cId;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="id", type="integer", nullable=true)
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="work_id", type="integer", nullable=false)
|
|
*/
|
|
private $workId;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="comment", type="text", nullable=true)
|
|
*/
|
|
private $comment;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="file", type="string", length=255, nullable=true)
|
|
*/
|
|
private $file;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="user_id", type="integer", nullable=false)
|
|
*/
|
|
private $userId;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @ORM\Column(name="sent_at", type="datetime", nullable=false)
|
|
*/
|
|
private $sentAt;
|
|
|
|
/**
|
|
* Set workId
|
|
*
|
|
* @param integer $workId
|
|
* @return CStudentPublicationComment
|
|
*/
|
|
public function setWorkId($workId)
|
|
{
|
|
$this->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;
|
|
}
|
|
}
|
|
|