123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class PersonalAgendaRepeat extends \Entity
- {
- /**
- * @return \Entity\Repository\PersonalAgendaRepeatRepository
- */
- public static function repository(){
- return \Entity\Repository\PersonalAgendaRepeatRepository::instance();
- }
- /**
- * @return \Entity\PersonalAgendaRepeat
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $cal_id
- */
- protected $cal_id;
- /**
- * @var string $cal_type
- */
- protected $cal_type;
- /**
- * @var integer $cal_end
- */
- protected $cal_end;
- /**
- * @var integer $cal_frequency
- */
- protected $cal_frequency;
- /**
- * @var string $cal_days
- */
- protected $cal_days;
- /**
- * Get cal_id
- *
- * @return integer
- */
- public function get_cal_id()
- {
- return $this->cal_id;
- }
- /**
- * Set cal_type
- *
- * @param string $value
- * @return PersonalAgendaRepeat
- */
- public function set_cal_type($value)
- {
- $this->cal_type = $value;
- return $this;
- }
- /**
- * Get cal_type
- *
- * @return string
- */
- public function get_cal_type()
- {
- return $this->cal_type;
- }
- /**
- * Set cal_end
- *
- * @param integer $value
- * @return PersonalAgendaRepeat
- */
- public function set_cal_end($value)
- {
- $this->cal_end = $value;
- return $this;
- }
- /**
- * Get cal_end
- *
- * @return integer
- */
- public function get_cal_end()
- {
- return $this->cal_end;
- }
- /**
- * Set cal_frequency
- *
- * @param integer $value
- * @return PersonalAgendaRepeat
- */
- public function set_cal_frequency($value)
- {
- $this->cal_frequency = $value;
- return $this;
- }
- /**
- * Get cal_frequency
- *
- * @return integer
- */
- public function get_cal_frequency()
- {
- return $this->cal_frequency;
- }
- /**
- * Set cal_days
- *
- * @param string $value
- * @return PersonalAgendaRepeat
- */
- public function set_cal_days($value)
- {
- $this->cal_days = $value;
- return $this;
- }
- /**
- * Get cal_days
- *
- * @return string
- */
- public function get_cal_days()
- {
- return $this->cal_days;
- }
- }
|