Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/src/Chamilo/CoreBundle/Entity/TrackEHotpotatoes.php

214 lines
3.6 KiB

<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* TrackEHotpotatoes
*
* @ORM\Table(name="track_e_hotpotatoes", indexes={@ORM\Index(name="idx_tehp_user_id", columns={"exe_user_id"}), @ORM\Index(name="idx_tehp_c_id", columns={"c_id"})})
* @ORM\Entity
*/
class TrackEHotpotatoes
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="exe_name", type="string", length=255, nullable=false)
*/
private $exeName;
/**
* @var integer
*
* @ORM\Column(name="exe_user_id", type="integer", nullable=true)
*/
private $exeUserId;
/**
* @var \DateTime
*
* @ORM\Column(name="exe_date", type="datetime", nullable=false)
*/
private $exeDate;
/**
* @var integer
*
* @ORM\Column(name="c_id", type="integer", nullable=false)
*/
private $cId;
/**
* @var integer
*
* @ORM\Column(name="exe_result", type="smallint", nullable=false)
*/
private $exeResult;
/**
* @var integer
*
* @ORM\Column(name="exe_weighting", type="smallint", nullable=false)
*/
private $exeWeighting;
/**
* Set exeName
*
* @param string $exeName
* @return TrackEHotpotatoes
*/
public function setExeName($exeName)
{
$this->exeName = $exeName;
return $this;
}
/**
* Get exeName
*
* @return string
*/
public function getExeName()
{
return $this->exeName;
}
/**
* Set exeUserId
*
* @param integer $exeUserId
* @return TrackEHotpotatoes
*/
public function setExeUserId($exeUserId)
{
$this->exeUserId = $exeUserId;
return $this;
}
/**
* Get exeUserId
*
* @return integer
*/
public function getExeUserId()
{
return $this->exeUserId;
}
/**
* Set exeDate
*
* @param \DateTime $exeDate
* @return TrackEHotpotatoes
*/
public function setExeDate($exeDate)
{
$this->exeDate = $exeDate;
return $this;
}
/**
* Get exeDate
*
* @return \DateTime
*/
public function getExeDate()
{
return $this->exeDate;
}
/**
* Set cId
*
* @param integer $cId
* @return TrackEHotpotatoes
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId
*
* @return integer
*/
public function getCId()
{
return $this->cId;
}
/**
* Set exeResult
*
* @param integer $exeResult
* @return TrackEHotpotatoes
*/
public function setExeResult($exeResult)
{
$this->exeResult = $exeResult;
return $this;
}
/**
* Get exeResult
*
* @return integer
*/
public function getExeResult()
{
return $this->exeResult;
}
/**
* Set exeWeighting
*
* @param integer $exeWeighting
* @return TrackEHotpotatoes
*/
public function setExeWeighting($exeWeighting)
{
$this->exeWeighting = $exeWeighting;
return $this;
}
/**
* Get exeWeighting
*
* @return integer
*/
public function getExeWeighting()
{
return $this->exeWeighting;
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
}