<?php
namespace App\MDS\GreenPatioBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* ReservationLoungeProfile
*
* @ORM\Table(name="reservation_lounge_profile")
* @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationLoungeProfileRepository")
*/
class ReservationLoungeProfile
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var int
*
* @ORM\Column(name="loungeId", type="integer")
*/
private $loungeId;
/**
* @var int
*
* @ORM\Column(name="periodId", type="integer")
*/
private $periodId;
/**
* @var int
*
* @ORM\Column(name="price", type="integer")
*/
private $price;
/**
* @var string
*
* @ORM\Column(name="description", type="string", length=255, nullable=true)
*/
private $description;
/**
* @var int
*
* @ORM\Column(name="created_id", type="integer")
*/
private $createdId;
/**
* @var \DateTime
*
* @ORM\Column(name="created_at", type="datetime")
*/
private $createdAt;
/**
* @var int
*
* @ORM\Column(name="updated_id", type="integer")
*/
private $updatedId;
/**
* @var \DateTime
*
* @ORM\Column(name="updated_at", type="datetime")
*/
private $updatedAt;
// ***************************************** AÑOS *****************************************
/**
* @var int
*
* @ORM\Column(name="year1", type="integer", nullable=true)
*/
private $year1;
/**
* @var int
*
* @ORM\Column(name="year2", type="integer", nullable=true)
*/
private $year2;
// ***************************************** MESES *****************************************
/**
* @var bool
*
* @ORM\Column(name="month1", type="boolean", nullable=true)
*/
private $month1;
/**
* @var bool
*
* @ORM\Column(name="month2", type="boolean", nullable=true)
*/
private $month2;
/**
* @var bool
*
* @ORM\Column(name="month3", type="boolean", nullable=true)
*/
private $month3;
/**
* @var bool
*
* @ORM\Column(name="month4", type="boolean", nullable=true)
*/
private $month4;
/**
* @var bool
*
* @ORM\Column(name="month5", type="boolean", nullable=true)
*/
private $month5;
/**
* @var bool
*
* @ORM\Column(name="month6", type="boolean", nullable=true)
*/
private $month6;
/**
* @var bool
*
* @ORM\Column(name="month7", type="boolean", nullable=true)
*/
private $month7;
/**
* @var bool
*
* @ORM\Column(name="month8", type="boolean", nullable=true)
*/
private $month8;
/**
* @var bool
*
* @ORM\Column(name="month9", type="boolean", nullable=true)
*/
private $month9;
/**
* @var bool
*
* @ORM\Column(name="month10", type="boolean", nullable=true)
*/
private $month10;
/**
* @var bool
*
* @ORM\Column(name="month11", type="boolean", nullable=true)
*/
private $month11;
/**
* @var bool
*
* @ORM\Column(name="month12", type="boolean", nullable=true)
*/
private $month12;
// ***************************************** DIAS *****************************************
/**
* @var bool
*
* @ORM\Column(name="day1", type="boolean", nullable=true)
*/
private $day1;
/**
* @var bool
*
* @ORM\Column(name="day2", type="boolean", nullable=true)
*/
private $day2;
/**
* @var bool
*
* @ORM\Column(name="day3", type="boolean", nullable=true)
*/
private $day3;
/**
* @var bool
*
* @ORM\Column(name="day4", type="boolean", nullable=true)
*/
private $day4;
/**
* @var bool
*
* @ORM\Column(name="day5", type="boolean", nullable=true)
*/
private $day5;
/**
* @var bool
*
* @ORM\Column(name="day6", type="boolean", nullable=true)
*/
private $day6;
/**
* @var bool
*
* @ORM\Column(name="day7", type="boolean", nullable=true)
*/
private $day7;
/**
* @var string
*
* @ORM\Column(name="title", type="string", length=255, nullable=true)
*/
private $title;
/**
* @var bool
*
* @ORM\Column(name="priceIsActive", type="boolean", nullable=true)
*/
private $priceIsActive;
/**
* @var \DateTime
*
* @ORM\Column(name="dateStart", type="datetime", nullable=true)
*/
private $dateStart;
/**
* @var \DateTime
*
* @ORM\Column(name="dateEnd", type="datetime", nullable=true)
*/
private $dateEnd;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set loungeId
*
* @param integer $loungeId
*
* @return ReservationLoungeProfile
*/
public function setLoungeId($loungeId)
{
$this->loungeId = $loungeId;
return $this;
}
/**
* Get loungeId
*
* @return int
*/
public function getLoungeId()
{
return $this->loungeId;
}
/**
* Set periodId
*
* @param integer $periodId
*
* @return ReservationLoungeProfile
*/
public function setPeriodId($periodId)
{
$this->periodId = $periodId;
return $this;
}
/**
* Get periodId
*
* @return int
*/
public function getPeriodId()
{
return $this->periodId;
}
/**
* Set price
*
* @param integer $price
*
* @return ReservationLoungeProfile
*/
public function setPrice($price)
{
$this->price = $price;
return $this;
}
/**
* Get price
*
* @return int
*/
public function getPrice()
{
return $this->price;
}
/**
* Set description
*
* @param string $description
*
* @return ReservationLoungeProfile
*/
public function setDescription($description)
{
$this->description = $description;
return $this;
}
/**
* Get description
*
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* Set createdId
*
* @param integer $createdId
*
* @return ReservationLoungeProfile
*/
public function setCreatedId($createdId)
{
$this->createdId = $createdId;
return $this;
}
/**
* Get createdId
*
* @return integer
*/
public function getCreatedId()
{
return $this->createdId;
}
/**
* Set createdAt
*
* @param \DateTime $createdAt
*
* @return ReservationLoungeProfile
*/
public function setCreatedAt($createdAt)
{
$this->createdAt = $createdAt;
return $this;
}
/**
* Get createdAt
*
* @return \DateTime
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* Set updatedId
*
* @param integer $updatedId
*
* @return ReservationLoungeProfile
*/
public function setUpdatedId($updatedId)
{
$this->updatedId = $updatedId;
return $this;
}
/**
* Get updatedId
*
* @return integer
*/
public function getUpdatedId()
{
return $this->updatedId;
}
/**
* Set updatedAt
*
* @param \DateTime $updatedAt
*
* @return ReservationLoungeProfile
*/
public function setUpdatedAt($updatedAt)
{
$this->updatedAt = $updatedAt;
return $this;
}
/**
* Get updatedAt
*
* @return \DateTime
*/
public function getUpdatedAt()
{
return $this->updatedAt;
}
/**
* Set year1
*
* @param integer $year1
*
* @return ReservationLoungeProfile
*/
public function setYear1($year1)
{
$this->year1 = $year1;
return $this;
}
/**
* Get year1
*
* @return integer
*/
public function getYear1()
{
return $this->year1;
}
/**
* Set year2
*
* @param integer $year2
*
* @return ReservationLoungeProfile
*/
public function setYear2($year2)
{
$this->year2 = $year2;
return $this;
}
/**
* Get year2
*
* @return integer
*/
public function getYear2()
{
return $this->year2;
}
/**
* Set month1
*
* @param boolean $month1
*
* @return ReservationLoungeProfile
*/
public function setMonth1($month1)
{
$this->month1 = $month1;
return $this;
}
/**
* Get month1
*
* @return boolean
*/
public function getMonth1()
{
return $this->month1;
}
/**
* Set month2
*
* @param boolean $month2
*
* @return ReservationLoungeProfile
*/
public function setMonth2($month2)
{
$this->month2 = $month2;
return $this;
}
/**
* Get month2
*
* @return boolean
*/
public function getMonth2()
{
return $this->month2;
}
/**
* Set month3
*
* @param boolean $month3
*
* @return ReservationLoungeProfile
*/
public function setMonth3($month3)
{
$this->month3 = $month3;
return $this;
}
/**
* Get month3
*
* @return boolean
*/
public function getMonth3()
{
return $this->month3;
}
/**
* Set month4
*
* @param boolean $month4
*
* @return ReservationLoungeProfile
*/
public function setMonth4($month4)
{
$this->month4 = $month4;
return $this;
}
/**
* Get month4
*
* @return boolean
*/
public function getMonth4()
{
return $this->month4;
}
/**
* Set month5
*
* @param boolean $month5
*
* @return ReservationLoungeProfile
*/
public function setMonth5($month5)
{
$this->month5 = $month5;
return $this;
}
/**
* Get month5
*
* @return boolean
*/
public function getMonth5()
{
return $this->month5;
}
/**
* Set month6
*
* @param boolean $month6
*
* @return ReservationLoungeProfile
*/
public function setMonth6($month6)
{
$this->month6 = $month6;
return $this;
}
/**
* Get month6
*
* @return boolean
*/
public function getMonth6()
{
return $this->month6;
}
/**
* Set month7
*
* @param boolean $month7
*
* @return ReservationLoungeProfile
*/
public function setMonth7($month7)
{
$this->month7 = $month7;
return $this;
}
/**
* Get month7
*
* @return boolean
*/
public function getMonth7()
{
return $this->month7;
}
/**
* Set month8
*
* @param boolean $month8
*
* @return ReservationLoungeProfile
*/
public function setMonth8($month8)
{
$this->month8 = $month8;
return $this;
}
/**
* Get month8
*
* @return boolean
*/
public function getMonth8()
{
return $this->month8;
}
/**
* Set month9
*
* @param boolean $month9
*
* @return ReservationLoungeProfile
*/
public function setMonth9($month9)
{
$this->month9 = $month9;
return $this;
}
/**
* Get month9
*
* @return boolean
*/
public function getMonth9()
{
return $this->month9;
}
/**
* Set month10
*
* @param boolean $month10
*
* @return ReservationLoungeProfile
*/
public function setMonth10($month10)
{
$this->month10 = $month10;
return $this;
}
/**
* Get month10
*
* @return boolean
*/
public function getMonth10()
{
return $this->month10;
}
/**
* Set month11
*
* @param boolean $month11
*
* @return ReservationLoungeProfile
*/
public function setMonth11($month11)
{
$this->month11 = $month11;
return $this;
}
/**
* Get month11
*
* @return boolean
*/
public function getMonth11()
{
return $this->month11;
}
/**
* Set month12
*
* @param boolean $month12
*
* @return ReservationLoungeProfile
*/
public function setMonth12($month12)
{
$this->month12 = $month12;
return $this;
}
/**
* Get month12
*
* @return boolean
*/
public function getMonth12()
{
return $this->month12;
}
/**
* Set day1
*
* @param boolean $day1
*
* @return ReservationLoungeProfile
*/
public function setDay1($day1)
{
$this->day1 = $day1;
return $this;
}
/**
* Get day1
*
* @return boolean
*/
public function getDay1()
{
return $this->day1;
}
/**
* Set day2
*
* @param boolean $day2
*
* @return ReservationLoungeProfile
*/
public function setDay2($day2)
{
$this->day2 = $day2;
return $this;
}
/**
* Get day2
*
* @return boolean
*/
public function getDay2()
{
return $this->day2;
}
/**
* Set day3
*
* @param boolean $day3
*
* @return ReservationLoungeProfile
*/
public function setDay3($day3)
{
$this->day3 = $day3;
return $this;
}
/**
* Get day3
*
* @return boolean
*/
public function getDay3()
{
return $this->day3;
}
/**
* Set day4
*
* @param boolean $day4
*
* @return ReservationLoungeProfile
*/
public function setDay4($day4)
{
$this->day4 = $day4;
return $this;
}
/**
* Get day4
*
* @return boolean
*/
public function getDay4()
{
return $this->day4;
}
/**
* Set day5
*
* @param boolean $day5
*
* @return ReservationLoungeProfile
*/
public function setDay5($day5)
{
$this->day5 = $day5;
return $this;
}
/**
* Get day5
*
* @return boolean
*/
public function getDay5()
{
return $this->day5;
}
/**
* Set day6
*
* @param boolean $day6
*
* @return ReservationLoungeProfile
*/
public function setDay6($day6)
{
$this->day6 = $day6;
return $this;
}
/**
* Get day6
*
* @return boolean
*/
public function getDay6()
{
return $this->day6;
}
/**
* Set day7
*
* @param boolean $day7
*
* @return ReservationLoungeProfile
*/
public function setDay7($day7)
{
$this->day7 = $day7;
return $this;
}
/**
* Get day7
*
* @return boolean
*/
public function getDay7()
{
return $this->day7;
}
/**
* Set title
*
* @param string $title
*
* @return ReservationLoungeProfile
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Get title
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Set priceIsActive
*
* @param boolean $priceIsActive
*
* @return ReservationLoungeProfile
*/
public function setPriceIsActive($priceIsActive)
{
$this->priceIsActive = $priceIsActive;
return $this;
}
/**
* Get priceIsActive
*
* @return boolean
*/
public function getPriceIsActive()
{
return $this->priceIsActive;
}
/**
* Set dateStart
*
* @param \DateTime $dateStart
*
* @return ReservationLoungeProfile
*/
public function setDateStart($dateStart)
{
$this->dateStart = $dateStart;
return $this;
}
/**
* Get dateStart
*
* @return \DateTime
*/
public function getDateStart()
{
return $this->dateStart;
}
/**
* Set dateEnd
*
* @param \DateTime $dateEnd
*
* @return ReservationLoungeProfile
*/
public function setDateEnd($dateEnd)
{
$this->dateEnd = $dateEnd;
return $this;
}
/**
* Get dateEnd
*
* @return \DateTime
*/
public function getDateEnd()
{
return $this->dateEnd;
}
}