%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/CBlogComment.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CBlogComment.
*
* @ORM\Table(
* name="c_blog_comment",
* indexes={
* @ORM\Index(name="course", columns={"c_id"})
* }
* )
* @ORM\Entity
*/
class CBlogComment
{
/**
* @var int
*
* @ORM\Column(name="iid", type="integer")
* @ORM\Id
* @ORM\GeneratedValue
*/
protected $iid;
/**
* @var int
*
* @ORM\Column(name="comment_id", type="integer")
*/
protected $commentId;
/**
* @var int
*
* @ORM\Column(name="c_id", type="integer")
*/
protected $cId;
/**
* @var string
*
* @ORM\Column(name="title", type="string", length=250, nullable=false)
*/
protected $title;
/**
* @var string
*
* @ORM\Column(name="comment", type="text", nullable=false)
*/
protected $comment;
/**
* @var int
*
* @ORM\Column(name="author_id", type="integer", nullable=false)
*/
protected $authorId;
/**
* @var \DateTime
*
* @ORM\Column(name="date_creation", type="datetime", nullable=false)
*/
protected $dateCreation;
/**
* @var int
*
* @ORM\Column(name="blog_id", type="integer", nullable=false)
*/
protected $blogId;
/**
* @var int
*
* @ORM\Column(name="post_id", type="integer", nullable=false)
*/
protected $postId;
/**
* @var int
*
* @ORM\Column(name="task_id", type="integer", nullable=true)
*/
protected $taskId;
/**
* @var int
*
* @ORM\Column(name="parent_comment_id", type="integer", nullable=false)
*/
protected $parentCommentId;
/**
* Set title.
*
* @param string $title
*
* @return CBlogComment
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Get title.
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Set comment.
*
* @param string $comment
*
* @return CBlogComment
*/
public function setComment($comment)
{
$this->comment = $comment;
return $this;
}
/**
* Get comment.
*
* @return string
*/
public function getComment()
{
return $this->comment;
}
/**
* Set authorId.
*
* @param int $authorId
*
* @return CBlogComment
*/
public function setAuthorId($authorId)
{
$this->authorId = $authorId;
return $this;
}
/**
* Get authorId.
*
* @return int
*/
public function getAuthorId()
{
return $this->authorId;
}
/**
* Set dateCreation.
*
* @param \DateTime $dateCreation
*
* @return CBlogComment
*/
public function setDateCreation($dateCreation)
{
$this->dateCreation = $dateCreation;
return $this;
}
/**
* Get dateCreation.
*
* @return \DateTime
*/
public function getDateCreation()
{
return $this->dateCreation;
}
/**
* Set blogId.
*
* @param int $blogId
*
* @return CBlogComment
*/
public function setBlogId($blogId)
{
$this->blogId = $blogId;
return $this;
}
/**
* Get blogId.
*
* @return int
*/
public function getBlogId()
{
return $this->blogId;
}
/**
* Set postId.
*
* @param int $postId
*
* @return CBlogComment
*/
public function setPostId($postId)
{
$this->postId = $postId;
return $this;
}
/**
* Get postId.
*
* @return int
*/
public function getPostId()
{
return $this->postId;
}
/**
* Set taskId.
*
* @param int $taskId
*
* @return CBlogComment
*/
public function setTaskId($taskId)
{
$this->taskId = $taskId;
return $this;
}
/**
* Get taskId.
*
* @return int
*/
public function getTaskId()
{
return $this->taskId;
}
/**
* Set parentCommentId.
*
* @param int $parentCommentId
*
* @return CBlogComment
*/
public function setParentCommentId($parentCommentId)
{
$this->parentCommentId = $parentCommentId;
return $this;
}
/**
* Get parentCommentId.
*
* @return int
*/
public function getParentCommentId()
{
return $this->parentCommentId;
}
/**
* Set commentId.
*
* @param int $commentId
*
* @return CBlogComment
*/
public function setCommentId($commentId)
{
$this->commentId = $commentId;
return $this;
}
/**
* Get commentId.
*
* @return int
*/
public function getCommentId()
{
return $this->commentId;
}
/**
* Set cId.
*
* @param int $cId
*
* @return CBlogComment
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId.
*
* @return int
*/
public function getCId()
{
return $this->cId;
}
}