<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class JobDailyRoutineEntry {
/**
* @var integer
*/
private $id;
/**
* @var string
*/
private $heading;
/**
* @var string
*/
private $description;
/**
* @var string
*/
private $descriptionInfo;
/**
* @var string
*/
private $videourl;
/**
* @var string
*/
private $dayTime;
/**
* @var integer
*/
private $position;
/**
* @var \App\Entity\JobDailyRoutine
*/
private $jobDailyRoutine;
/**
* @var \App\Entity\Media
*/
private $picture;
/**
* @var \App\Entity\KeyValue
*/
private $layout;
/**
* @var \App\Entity\KeyValue
*/
private $theme;
/**
* @var \App\Entity\KeyValue
*/
private $imagePosition;
/**
* @var \App\Entity\KeyValue
*/
private $highlightPosition;
/**
* @var string
*/
private $backgroundVideo;
/**
* @var \App\Entity\Media
*/
private $backgroundImage;
/**
* Get id
*
* @return integer
*/
public function getId() {
return $this->id;
}
/**
* Set heading
*
* @param string $heading
*
* @return JobDailyRoutineEntry
*/
public function setHeading($heading) {
$this->heading = $heading;
return $this;
}
/**
* Get heading
*
* @return string
*/
public function getHeading() {
return $this->heading;
}
/**
* Set description
*
* @param string $description
*
* @return JobDailyRoutineEntry
*/
public function setDescription($description) {
$this->description = $description;
return $this;
}
/**
* Get description
*
* @return string
*/
public function getDescription() {
return $this->description;
}
/**
* Set descriptionInfo
*
* @param string $descriptionInfo
*
* @return JobDailyRoutineEntry
*/
public function setDescriptionInfo($descriptionInfo) {
$this->descriptionInfo = $descriptionInfo;
return $this;
}
/**
* Get descriptionInfo
*
* @return string
*/
public function getDescriptionInfo() {
return $this->descriptionInfo;
}
/**
* Set videourl
*
* @param string $videourl
*
* @return JobDailyRoutineEntry
*/
public function setVideourl($videourl) {
$this->videourl = $videourl;
return $this;
}
/**
* Get videourl
*
* @return string
*/
public function getVideourl() {
return $this->videourl;
}
/**
* Set backgroundVideo
*
* @param string $backgroundVideo
*
* @return JobDailyRoutineEntry
*/
public function setBackgroundVideo($backgroundVideo) {
$this->backgroundVideo = $backgroundVideo;
return $this;
}
/**
* Get backgroundVideo
*
* @return string
*/
public function getBackgroundVideo() {
return $this->backgroundVideo;
}
/**
* Set dayTime
*
* @param string $dayTime
*
* @return JobDailyRoutineEntry
*/
public function setDayTime($dayTime) {
$this->dayTime = $dayTime;
return $this;
}
/**
* Get dayTime
*
* @return string
*/
public function getDayTime() {
return $this->dayTime;
}
/**
* Set position
*
* @param integer $position
*
* @return JobDailyRoutineEntry
*/
public function setPosition($position) {
$this->position = $position;
return $this;
}
/**
* Get position
*
* @return integer
*/
public function getPosition() {
return $this->position;
}
/**
* Set jobDailyRoutine
*
* @param \App\Entity\JobDailyRoutine $jobDailyRoutine
*
* @return JobDailyRoutineEntry
*/
public function setJobDailyRoutine(\App\Entity\JobDailyRoutine $jobDailyRoutine = null) {
$this->jobDailyRoutine = $jobDailyRoutine;
return $this;
}
/**
* Get jobDailyRoutine
*
* @return \App\Entity\JobDailyRoutine
*/
public function getJobDailyRoutine() {
return $this->jobDailyRoutine;
}
/**
* Set picture
*
* @param \App\Entity\Media $picture
*
* @return JobDailyRoutineEntry
*/
public function setPicture(\App\Entity\Media $picture = null) {
$this->picture = $picture;
return $this;
}
/**
* Get picture
*
* @return \App\Entity\Media
*/
public function getPicture() {
return $this->picture;
}
/**
* Set backgroundImage
*
* @param \App\Entity\Media $backgroundImage
*
* @return JobDailyRoutineEntry
*/
public function setBackgroundImage(\App\Entity\Media $backgroundImage = null) {
$this->backgroundImage = $backgroundImage;
return $this;
}
/**
* Get backgroundImage
*
* @return \App\Entity\Media
*/
public function getBackgroundImage() {
return $this->backgroundImage;
}
/**
* Set layout
*
* @param \App\Entity\KeyValue $layout
*
* @return JobDailyRoutineEntry
*/
public function setLayout(\App\Entity\KeyValue $layout = null) {
$this->layout = $layout;
return $this;
}
/**
* Get layout
*
* @return \App\Entity\KeyValue
*/
public function getLayout() {
return $this->layout;
}
/**
* Set theme
*
* @param \App\Entity\KeyValue $theme
*
* @return JobDailyRoutineEntry
*/
public function setTheme(\App\Entity\KeyValue $theme = null) {
$this->theme = $theme;
return $this;
}
/**
* Get theme
*
* @return \App\Entity\KeyValue
*/
public function getTheme() {
return $this->theme;
}
/**
* Set imagePosition
*
* @param \App\Entity\KeyValue $imagePosition
*
* @return JobDailyRoutineEntry
*/
public function setImagePosition(\App\Entity\KeyValue $imagePosition = null) {
$this->imagePosition = $imagePosition;
return $this;
}
/**
* Get imagePosition
*
* @return \App\Entity\KeyValue
*/
public function getImagePosition() {
return $this->imagePosition;
}
/**
* Set highlightPosition
*
* @param \App\Entity\KeyValue $highlightPosition
*
* @return JobDailyRoutineEntry
*/
public function setHighlightPosition(\App\Entity\KeyValue $highlightPosition = null) {
$this->highlightPosition = $highlightPosition;
return $this;
}
/**
* Get highlightPosition
*
* @return \App\Entity\KeyValue
*/
public function getHighlightPosition() {
return $this->highlightPosition;
}
}