%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CourseBundle/Entity/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CourseBundle/Entity/CStudentPublicationComment.php |
<?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",
* indexes={
* @ORM\Index(name="course", columns={"c_id"}),
* @ORM\Index(name="user", columns={"user_id"}),
* @ORM\Index(name="work", columns={"work_id"})
* }
* )
* @ORM\Entity
*/
class CStudentPublicationComment
{
/**
* @var int
*
* @ORM\Column(name="iid", type="integer")
* @ORM\Id
* @ORM\GeneratedValue
*/
protected $iid;
/**
* @var int
*
* @ORM\Column(name="c_id", type="integer")
*/
protected $cId;
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=true)
*/
protected $id;
/**
* @var int
*
* @ORM\Column(name="work_id", type="integer", nullable=false)
*/
protected $workId;
/**
* @var string
*
* @ORM\Column(name="comment", type="text", nullable=true)
*/
protected $comment;
/**
* @var string
*
* @ORM\Column(name="file", type="string", length=255, nullable=true)
*/
protected $file;
/**
* @var int
*
* @ORM\Column(name="user_id", type="integer", nullable=false)
*/
protected $userId;
/**
* @var \DateTime
*
* @ORM\Column(name="sent_at", type="datetime", nullable=false)
*/
protected $sentAt;
/**
* Set workId.
*
* @param int $workId
*
* @return CStudentPublicationComment
*/
public function setWorkId($workId)
{
$this->workId = $workId;
return $this;
}
/**
* Get workId.
*
* @return int
*/
public function getWorkId()
{
return $this->workId;
}
/**
* Set cId.
*
* @param int $cId
*
* @return CStudentPublicationComment
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId.
*
* @return int
*/
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 int $userId
*
* @return CStudentPublicationComment
*/
public function setUserId($userId)
{
$this->userId = $userId;
return $this;
}
/**
* Get userId.
*
* @return int
*/
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 int
*/
public function getId()
{
return $this->id;
}
}