12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class PersonalAgendaRepeatNot extends \Entity
- {
- /**
- * @return \Entity\Repository\PersonalAgendaRepeatNotRepository
- */
- public static function repository(){
- return \Entity\Repository\PersonalAgendaRepeatNotRepository::instance();
- }
- /**
- * @return \Entity\PersonalAgendaRepeatNot
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $cal_id
- */
- protected $cal_id;
- /**
- * @var integer $cal_date
- */
- protected $cal_date;
- /**
- * Set cal_id
- *
- * @param integer $value
- * @return PersonalAgendaRepeatNot
- */
- 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 PersonalAgendaRepeatNot
- */
- 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;
- }
- }
|