title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } /** * Set content. * * @param string $content * * @return SysCalendar */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content. * * @return string */ public function getContent() { return $this->content; } /** * Set startDate. * * @param \DateTime $startDate * * @return SysCalendar */ public function setStartDate($startDate) { $this->startDate = $startDate; return $this; } /** * Get startDate. * * @return \DateTime */ public function getStartDate() { return $this->startDate; } /** * Set endDate. * * @param \DateTime $endDate * * @return SysCalendar */ public function setEndDate($endDate) { $this->endDate = $endDate; return $this; } /** * Get endDate. * * @return \DateTime */ public function getEndDate() { return $this->endDate; } /** * Set accessUrlId. * * @param int $accessUrlId * * @return SysCalendar */ public function setAccessUrlId($accessUrlId) { $this->accessUrlId = $accessUrlId; return $this; } /** * Get accessUrlId. * * @return int */ public function getAccessUrlId() { return $this->accessUrlId; } /** * Set allDay. * * @param int $allDay * * @return SysCalendar */ public function setAllDay($allDay) { $this->allDay = $allDay; return $this; } /** * Get allDay. * * @return int */ public function getAllDay() { return $this->allDay; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }