123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class PersonalAgenda extends \Entity
- {
- /**
- * @return \Entity\Repository\PersonalAgendaRepository
- */
- public static function repository(){
- return \Entity\Repository\PersonalAgendaRepository::instance();
- }
- /**
- * @return \Entity\PersonalAgenda
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var integer $user
- */
- protected $user;
- /**
- * @var text $title
- */
- protected $title;
- /**
- * @var text $text
- */
- protected $text;
- /**
- * @var datetime $date
- */
- protected $date;
- /**
- * @var datetime $enddate
- */
- protected $enddate;
- /**
- * @var string $course
- */
- protected $course;
- /**
- * @var integer $parent_event_id
- */
- protected $parent_event_id;
- /**
- * @var integer $all_day
- */
- protected $all_day;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set user
- *
- * @param integer $value
- * @return PersonalAgenda
- */
- public function set_user($value)
- {
- $this->user = $value;
- return $this;
- }
- /**
- * Get user
- *
- * @return integer
- */
- public function get_user()
- {
- return $this->user;
- }
- /**
- * Set title
- *
- * @param text $value
- * @return PersonalAgenda
- */
- public function set_title($value)
- {
- $this->title = $value;
- return $this;
- }
- /**
- * Get title
- *
- * @return text
- */
- public function get_title()
- {
- return $this->title;
- }
- /**
- * Set text
- *
- * @param text $value
- * @return PersonalAgenda
- */
- public function set_text($value)
- {
- $this->text = $value;
- return $this;
- }
- /**
- * Get text
- *
- * @return text
- */
- public function get_text()
- {
- return $this->text;
- }
- /**
- * Set date
- *
- * @param datetime $value
- * @return PersonalAgenda
- */
- public function set_date($value)
- {
- $this->date = $value;
- return $this;
- }
- /**
- * Get date
- *
- * @return datetime
- */
- public function get_date()
- {
- return $this->date;
- }
- /**
- * Set enddate
- *
- * @param datetime $value
- * @return PersonalAgenda
- */
- public function set_enddate($value)
- {
- $this->enddate = $value;
- return $this;
- }
- /**
- * Get enddate
- *
- * @return datetime
- */
- public function get_enddate()
- {
- return $this->enddate;
- }
- /**
- * Set course
- *
- * @param string $value
- * @return PersonalAgenda
- */
- public function set_course($value)
- {
- $this->course = $value;
- return $this;
- }
- /**
- * Get course
- *
- * @return string
- */
- public function get_course()
- {
- return $this->course;
- }
- /**
- * Set parent_event_id
- *
- * @param integer $value
- * @return PersonalAgenda
- */
- public function set_parent_event_id($value)
- {
- $this->parent_event_id = $value;
- return $this;
- }
- /**
- * Get parent_event_id
- *
- * @return integer
- */
- public function get_parent_event_id()
- {
- return $this->parent_event_id;
- }
- /**
- * Set all_day
- *
- * @param integer $value
- * @return PersonalAgenda
- */
- public function set_all_day($value)
- {
- $this->all_day = $value;
- return $this;
- }
- /**
- * Get all_day
- *
- * @return integer
- */
- public function get_all_day()
- {
- return $this->all_day;
- }
- }
|