%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/CCalendarEventRepeat.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CourseBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CCalendarEventRepeat.
*
* @ORM\Table(
* name="c_calendar_event_repeat",
* indexes={
* @ORM\Index(name="course", columns={"c_id"})
* }
* )
* @ORM\Entity
*/
class CCalendarEventRepeat
{
/**
* @var int
*
* @ORM\Column(name="iid", type="integer")
* @ORM\Id
* @ORM\GeneratedValue
*/
protected $iid;
/**
* @var int
*
* @ORM\Column(name="cal_id", type="integer")
*/
protected $calId;
/**
* @var int
*
* @ORM\Column(name="c_id", type="integer")
*/
protected $cId;
/**
* @var string
*
* @ORM\Column(name="cal_type", type="string", length=20, nullable=true)
*/
protected $calType;
/**
* @var int
*
* @ORM\Column(name="cal_end", type="integer", nullable=true)
*/
protected $calEnd;
/**
* @var int
*
* @ORM\Column(name="cal_frequency", type="integer", nullable=true)
*/
protected $calFrequency;
/**
* @var string
*
* @ORM\Column(name="cal_days", type="string", length=7, nullable=true)
*/
protected $calDays;
/**
* Set calType.
*
* @param string $calType
*
* @return CCalendarEventRepeat
*/
public function setCalType($calType)
{
$this->calType = $calType;
return $this;
}
/**
* Get calType.
*
* @return string
*/
public function getCalType()
{
return $this->calType;
}
/**
* Set calEnd.
*
* @param int $calEnd
*
* @return CCalendarEventRepeat
*/
public function setCalEnd($calEnd)
{
$this->calEnd = $calEnd;
return $this;
}
/**
* Get calEnd.
*
* @return int
*/
public function getCalEnd()
{
return $this->calEnd;
}
/**
* Set calFrequency.
*
* @param int $calFrequency
*
* @return CCalendarEventRepeat
*/
public function setCalFrequency($calFrequency)
{
$this->calFrequency = $calFrequency;
return $this;
}
/**
* Get calFrequency.
*
* @return int
*/
public function getCalFrequency()
{
return $this->calFrequency;
}
/**
* Set calDays.
*
* @param string $calDays
*
* @return CCalendarEventRepeat
*/
public function setCalDays($calDays)
{
$this->calDays = $calDays;
return $this;
}
/**
* Get calDays.
*
* @return string
*/
public function getCalDays()
{
return $this->calDays;
}
/**
* Set cId.
*
* @param int $cId
*
* @return CCalendarEventRepeat
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId.
*
* @return int
*/
public function getCId()
{
return $this->cId;
}
/**
* Set calId.
*
* @param int $calId
*
* @return CCalendarEventRepeat
*/
public function setCalId($calId)
{
$this->calId = $calId;
return $this;
}
/**
* Get calId.
*
* @return int
*/
public function getCalId()
{
return $this->calId;
}
}