%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/CWikiDiscuss.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CWikiDiscuss.
*
* @ORM\Table(
* name="c_wiki_discuss",
* indexes={
* @ORM\Index(name="course", columns={"c_id"})
* }
* )
* @ORM\Entity
*/
class CWikiDiscuss
{
/**
* @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="publication_id", type="integer", nullable=false)
*/
protected $publicationId;
/**
* @var int
*
* @ORM\Column(name="userc_id", type="integer", nullable=false)
*/
protected $usercId;
/**
* @var string
*
* @ORM\Column(name="comment", type="text", nullable=false)
*/
protected $comment;
/**
* @var string
*
* @ORM\Column(name="p_score", type="string", length=255, nullable=true)
*/
protected $pScore;
/**
* @var \DateTime
*
* @ORM\Column(name="dtime", type="datetime", nullable=false)
*/
protected $dtime;
/**
* Set publicationId.
*
* @param int $publicationId
*
* @return CWikiDiscuss
*/
public function setPublicationId($publicationId)
{
$this->publicationId = $publicationId;
return $this;
}
/**
* Get publicationId.
*
* @return int
*/
public function getPublicationId()
{
return $this->publicationId;
}
/**
* Set usercId.
*
* @param int $usercId
*
* @return CWikiDiscuss
*/
public function setUsercId($usercId)
{
$this->usercId = $usercId;
return $this;
}
/**
* Get usercId.
*
* @return int
*/
public function getUsercId()
{
return $this->usercId;
}
/**
* Set comment.
*
* @param string $comment
*
* @return CWikiDiscuss
*/
public function setComment($comment)
{
$this->comment = $comment;
return $this;
}
/**
* Get comment.
*
* @return string
*/
public function getComment()
{
return $this->comment;
}
/**
* Set pScore.
*
* @param string $pScore
*
* @return CWikiDiscuss
*/
public function setPScore($pScore)
{
$this->pScore = $pScore;
return $this;
}
/**
* Get pScore.
*
* @return string
*/
public function getPScore()
{
return $this->pScore;
}
/**
* Set dtime.
*
* @param \DateTime $dtime
*
* @return CWikiDiscuss
*/
public function setDtime($dtime)
{
$this->dtime = $dtime;
return $this;
}
/**
* Get dtime.
*
* @return \DateTime
*/
public function getDtime()
{
return $this->dtime;
}
/**
* Set id.
*
* @param int $id
*
* @return CWikiDiscuss
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set cId.
*
* @param int $cId
*
* @return CWikiDiscuss
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId.
*
* @return int
*/
public function getCId()
{
return $this->cId;
}
}