123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class CalendarEventRepeatNot extends \CourseEntity
- {
- /**
- * @return \Entity\Repository\CalendarEventRepeatNotRepository
- */
- public static function repository(){
- return \Entity\Repository\CalendarEventRepeatNotRepository::instance();
- }
- /**
- * @return \Entity\CalendarEventRepeatNot
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $c_id
- */
- protected $c_id;
- /**
- * @var integer $cal_id
- */
- protected $cal_id;
- /**
- * @var integer $cal_date
- */
- protected $cal_date;
- /**
- * Set c_id
- *
- * @param integer $value
- * @return CalendarEventRepeatNot
- */
- public function set_c_id($value)
- {
- $this->c_id = $value;
- return $this;
- }
- /**
- * Get c_id
- *
- * @return integer
- */
- public function get_c_id()
- {
- return $this->c_id;
- }
- /**
- * Set cal_id
- *
- * @param integer $value
- * @return CalendarEventRepeatNot
- */
- public function set_cal_id($value)
- {
- $this->cal_id = $value;
- return $this;
- }
- /**
- * Get cal_id
- *
- * @return integer
- */
- public function get_cal_id()
- {
- return $this->cal_id;
- }
- /**
- * Set cal_date
- *
- * @param integer $value
- * @return CalendarEventRepeatNot
- */
- public function set_cal_date($value)
- {
- $this->cal_date = $value;
- return $this;
- }
- /**
- * Get cal_date
- *
- * @return integer
- */
- public function get_cal_date()
- {
- return $this->cal_date;
- }
- }
|