123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * CTimeline
- *
- * @ORM\Table(name="c_timeline")
- * @ORM\Entity
- */
- class CTimeline
- {
- /**
- * @var integer $id
- *
- * @ORM\Column(name="id", type="integer", nullable=false)
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @var integer
- *
- * @Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @Id
- * @GeneratedValue(strategy="NONE")
- */
- private $cId;
- /**
- * @var string
- *
- * @Column(name="headline", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $headline;
- /**
- * @var string
- *
- * @Column(name="type", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $type;
- /**
- * @var string
- *
- * @Column(name="start_date", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $startDate;
- /**
- * @var string
- *
- * @Column(name="end_date", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $endDate;
- /**
- * @var string
- *
- * @Column(name="text", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $text;
- /**
- * @var string
- *
- * @Column(name="media", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $media;
- /**
- * @var string
- *
- * @Column(name="media_credit", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $mediaCredit;
- /**
- * @var string
- *
- * @Column(name="media_caption", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $mediaCaption;
- /**
- * @var string
- *
- * @Column(name="title_slide", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $titleSlide;
- /**
- * @var integer
- *
- * @Column(name="parent_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $parentId;
- /**
- * @var integer
- *
- * @Column(name="status", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $status;
- /**
- * Set id
- *
- * @param integer $id
- * @return CTimeline
- */
- public function setId($id)
- {
- $this->id = $id;
- return $this;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set cId
- *
- * @param integer $cId
- * @return CTimeline
- */
- public function setCId($cId)
- {
- $this->cId = $cId;
- return $this;
- }
- /**
- * Get cId
- *
- * @return integer
- */
- public function getCId()
- {
- return $this->cId;
- }
- /**
- * Set headline
- *
- * @param string $headline
- * @return CTimeline
- */
- public function setHeadline($headline)
- {
- $this->headline = $headline;
- return $this;
- }
- /**
- * Get headline
- *
- * @return string
- */
- public function getHeadline()
- {
- return $this->headline;
- }
- /**
- * Set type
- *
- * @param string $type
- * @return CTimeline
- */
- public function setType($type)
- {
- $this->type = $type;
- return $this;
- }
- /**
- * Get type
- *
- * @return string
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Set startDate
- *
- * @param string $startDate
- * @return CTimeline
- */
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- return $this;
- }
- /**
- * Get startDate
- *
- * @return string
- */
- public function getStartDate()
- {
- return $this->startDate;
- }
- /**
- * Set endDate
- *
- * @param string $endDate
- * @return CTimeline
- */
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- return $this;
- }
- /**
- * Get endDate
- *
- * @return string
- */
- public function getEndDate()
- {
- return $this->endDate;
- }
- /**
- * Set text
- *
- * @param string $text
- * @return CTimeline
- */
- public function setText($text)
- {
- $this->text = $text;
- return $this;
- }
- /**
- * Get text
- *
- * @return string
- */
- public function getText()
- {
- return $this->text;
- }
- /**
- * Set media
- *
- * @param string $media
- * @return CTimeline
- */
- public function setMedia($media)
- {
- $this->media = $media;
- return $this;
- }
- /**
- * Get media
- *
- * @return string
- */
- public function getMedia()
- {
- return $this->media;
- }
- /**
- * Set mediaCredit
- *
- * @param string $mediaCredit
- * @return CTimeline
- */
- public function setMediaCredit($mediaCredit)
- {
- $this->mediaCredit = $mediaCredit;
- return $this;
- }
- /**
- * Get mediaCredit
- *
- * @return string
- */
- public function getMediaCredit()
- {
- return $this->mediaCredit;
- }
- /**
- * Set mediaCaption
- *
- * @param string $mediaCaption
- * @return CTimeline
- */
- public function setMediaCaption($mediaCaption)
- {
- $this->mediaCaption = $mediaCaption;
- return $this;
- }
- /**
- * Get mediaCaption
- *
- * @return string
- */
- public function getMediaCaption()
- {
- return $this->mediaCaption;
- }
- /**
- * Set titleSlide
- *
- * @param string $titleSlide
- * @return CTimeline
- */
- public function setTitleSlide($titleSlide)
- {
- $this->titleSlide = $titleSlide;
- return $this;
- }
- /**
- * Get titleSlide
- *
- * @return string
- */
- public function getTitleSlide()
- {
- return $this->titleSlide;
- }
- /**
- * Set parentId
- *
- * @param integer $parentId
- * @return CTimeline
- */
- public function setParentId($parentId)
- {
- $this->parentId = $parentId;
- return $this;
- }
- /**
- * Get parentId
- *
- * @return integer
- */
- public function getParentId()
- {
- return $this->parentId;
- }
- /**
- * Set status
- *
- * @param integer $status
- * @return CTimeline
- */
- public function setStatus($status)
- {
- $this->status = $status;
- return $this;
- }
- /**
- * Get status
- *
- * @return integer
- */
- public function getStatus()
- {
- return $this->status;
- }
- }
|