src/MDS/GreenPatioBundle/Entity/ReservationLoungeProfile.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\MDS\GreenPatioBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ReservationLoungeProfile
  6.  *
  7.  * @ORM\Table(name="reservation_lounge_profile")
  8.  * @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationLoungeProfileRepository")
  9.  */
  10. class ReservationLoungeProfile
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var int
  22.      *
  23.      * @ORM\Column(name="loungeId", type="integer")
  24.      */
  25.     private $loungeId;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="periodId", type="integer")
  30.      */
  31.     private $periodId;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="price", type="integer")
  36.      */
  37.     private $price;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="description", type="string", length=255, nullable=true)
  42.      */
  43.     private $description;
  44.     /**
  45.      * @var int
  46.      *
  47.      * @ORM\Column(name="created_id", type="integer")
  48.      */
  49.     private $createdId;
  50.     /**
  51.      * @var \DateTime
  52.      *
  53.      * @ORM\Column(name="created_at", type="datetime")
  54.      */
  55.     private $createdAt;
  56.     /**
  57.      * @var int
  58.      *
  59.      * @ORM\Column(name="updated_id", type="integer")
  60.      */
  61.     private $updatedId;
  62.     /**
  63.      * @var \DateTime
  64.      *
  65.      * @ORM\Column(name="updated_at", type="datetime")
  66.      */
  67.     private $updatedAt;
  68.     // ***************************************** AÑOS *****************************************
  69.     /**
  70.      * @var int
  71.      *
  72.      * @ORM\Column(name="year1", type="integer", nullable=true)
  73.      */
  74.     private $year1;
  75.     /**
  76.      * @var int
  77.      *
  78.      * @ORM\Column(name="year2", type="integer", nullable=true)
  79.      */
  80.     private $year2;
  81.     // ***************************************** MESES *****************************************
  82.     /**
  83.      * @var bool
  84.      *
  85.      * @ORM\Column(name="month1", type="boolean", nullable=true)
  86.      */
  87.     private $month1;
  88.     /**
  89.      * @var bool
  90.      *
  91.      * @ORM\Column(name="month2", type="boolean", nullable=true)
  92.      */
  93.     private $month2;
  94.     /**
  95.      * @var bool
  96.      *
  97.      * @ORM\Column(name="month3", type="boolean", nullable=true)
  98.      */
  99.     private $month3;
  100.     /**
  101.      * @var bool
  102.      *
  103.      * @ORM\Column(name="month4", type="boolean", nullable=true)
  104.      */
  105.     private $month4;
  106.     /**
  107.      * @var bool
  108.      *
  109.      * @ORM\Column(name="month5", type="boolean", nullable=true)
  110.      */
  111.     private $month5;
  112.     /**
  113.      * @var bool
  114.      *
  115.      * @ORM\Column(name="month6", type="boolean", nullable=true)
  116.      */
  117.     private $month6;
  118.     /**
  119.      * @var bool
  120.      *
  121.      * @ORM\Column(name="month7", type="boolean", nullable=true)
  122.      */
  123.     private $month7;
  124.     /**
  125.      * @var bool
  126.      *
  127.      * @ORM\Column(name="month8", type="boolean", nullable=true)
  128.      */
  129.     private $month8;
  130.     /**
  131.      * @var bool
  132.      *
  133.      * @ORM\Column(name="month9", type="boolean", nullable=true)
  134.      */
  135.     private $month9;
  136.     /**
  137.      * @var bool
  138.      *
  139.      * @ORM\Column(name="month10", type="boolean", nullable=true)
  140.      */
  141.     private $month10;
  142.     /**
  143.      * @var bool
  144.      *
  145.      * @ORM\Column(name="month11", type="boolean", nullable=true)
  146.      */
  147.     private $month11;
  148.     /**
  149.      * @var bool
  150.      *
  151.      * @ORM\Column(name="month12", type="boolean", nullable=true)
  152.      */
  153.     private $month12;
  154.     // ***************************************** DIAS *****************************************
  155.     /**
  156.      * @var bool
  157.      *
  158.      * @ORM\Column(name="day1", type="boolean", nullable=true)
  159.      */
  160.     private $day1;
  161.     /**
  162.      * @var bool
  163.      *
  164.      * @ORM\Column(name="day2", type="boolean", nullable=true)
  165.      */
  166.     private $day2;
  167.     /**
  168.      * @var bool
  169.      *
  170.      * @ORM\Column(name="day3", type="boolean", nullable=true)
  171.      */
  172.     private $day3;
  173.     /**
  174.      * @var bool
  175.      *
  176.      * @ORM\Column(name="day4", type="boolean", nullable=true)
  177.      */
  178.     private $day4;
  179.     /**
  180.      * @var bool
  181.      *
  182.      * @ORM\Column(name="day5", type="boolean", nullable=true)
  183.      */
  184.     private $day5;
  185.     /**
  186.      * @var bool
  187.      *
  188.      * @ORM\Column(name="day6", type="boolean", nullable=true)
  189.      */
  190.     private $day6;
  191.     /**
  192.      * @var bool
  193.      *
  194.      * @ORM\Column(name="day7", type="boolean", nullable=true)
  195.      */
  196.     private $day7;
  197.     /**
  198.      * @var string
  199.      *
  200.      * @ORM\Column(name="title", type="string", length=255, nullable=true)
  201.      */
  202.     private $title;
  203.     /**
  204.      * @var bool
  205.      *
  206.      * @ORM\Column(name="priceIsActive", type="boolean", nullable=true)
  207.      */
  208.     private $priceIsActive;
  209.     /**
  210.      * @var \DateTime
  211.      *
  212.      * @ORM\Column(name="dateStart", type="datetime", nullable=true)
  213.      */
  214.     private $dateStart;
  215.     /**
  216.      * @var \DateTime
  217.      *
  218.      * @ORM\Column(name="dateEnd", type="datetime", nullable=true)
  219.      */
  220.     private $dateEnd;
  221.     /**
  222.      * Get id
  223.      *
  224.      * @return int
  225.      */
  226.     public function getId()
  227.     {
  228.         return $this->id;
  229.     }
  230.     /**
  231.      * Set loungeId
  232.      *
  233.      * @param integer $loungeId
  234.      *
  235.      * @return ReservationLoungeProfile
  236.      */
  237.     public function setLoungeId($loungeId)
  238.     {
  239.         $this->loungeId $loungeId;
  240.         return $this;
  241.     }
  242.     /**
  243.      * Get loungeId
  244.      *
  245.      * @return int
  246.      */
  247.     public function getLoungeId()
  248.     {
  249.         return $this->loungeId;
  250.     }
  251.     /**
  252.      * Set periodId
  253.      *
  254.      * @param integer $periodId
  255.      *
  256.      * @return ReservationLoungeProfile
  257.      */
  258.     public function setPeriodId($periodId)
  259.     {
  260.         $this->periodId $periodId;
  261.         return $this;
  262.     }
  263.     /**
  264.      * Get periodId
  265.      *
  266.      * @return int
  267.      */
  268.     public function getPeriodId()
  269.     {
  270.         return $this->periodId;
  271.     }
  272.     /**
  273.      * Set price
  274.      *
  275.      * @param integer $price
  276.      *
  277.      * @return ReservationLoungeProfile
  278.      */
  279.     public function setPrice($price)
  280.     {
  281.         $this->price $price;
  282.         return $this;
  283.     }
  284.     /**
  285.      * Get price
  286.      *
  287.      * @return int
  288.      */
  289.     public function getPrice()
  290.     {
  291.         return $this->price;
  292.     }
  293.     /**
  294.      * Set description
  295.      *
  296.      * @param string $description
  297.      *
  298.      * @return ReservationLoungeProfile
  299.      */
  300.     public function setDescription($description)
  301.     {
  302.         $this->description $description;
  303.         return $this;
  304.     }
  305.     /**
  306.      * Get description
  307.      *
  308.      * @return string
  309.      */
  310.     public function getDescription()
  311.     {
  312.         return $this->description;
  313.     }
  314.     /**
  315.      * Set createdId
  316.      *
  317.      * @param integer $createdId
  318.      *
  319.      * @return ReservationLoungeProfile
  320.      */
  321.     public function setCreatedId($createdId)
  322.     {
  323.         $this->createdId $createdId;
  324.         return $this;
  325.     }
  326.     /**
  327.      * Get createdId
  328.      *
  329.      * @return integer
  330.      */
  331.     public function getCreatedId()
  332.     {
  333.         return $this->createdId;
  334.     }
  335.     /**
  336.      * Set createdAt
  337.      *
  338.      * @param \DateTime $createdAt
  339.      *
  340.      * @return ReservationLoungeProfile
  341.      */
  342.     public function setCreatedAt($createdAt)
  343.     {
  344.         $this->createdAt $createdAt;
  345.         return $this;
  346.     }
  347.     /**
  348.      * Get createdAt
  349.      *
  350.      * @return \DateTime
  351.      */
  352.     public function getCreatedAt()
  353.     {
  354.         return $this->createdAt;
  355.     }
  356.     /**
  357.      * Set updatedId
  358.      *
  359.      * @param integer $updatedId
  360.      *
  361.      * @return ReservationLoungeProfile
  362.      */
  363.     public function setUpdatedId($updatedId)
  364.     {
  365.         $this->updatedId $updatedId;
  366.         return $this;
  367.     }
  368.     /**
  369.      * Get updatedId
  370.      *
  371.      * @return integer
  372.      */
  373.     public function getUpdatedId()
  374.     {
  375.         return $this->updatedId;
  376.     }
  377.     /**
  378.      * Set updatedAt
  379.      *
  380.      * @param \DateTime $updatedAt
  381.      *
  382.      * @return ReservationLoungeProfile
  383.      */
  384.     public function setUpdatedAt($updatedAt)
  385.     {
  386.         $this->updatedAt $updatedAt;
  387.         return $this;
  388.     }
  389.     /**
  390.      * Get updatedAt
  391.      *
  392.      * @return \DateTime
  393.      */
  394.     public function getUpdatedAt()
  395.     {
  396.         return $this->updatedAt;
  397.     }
  398.     /**
  399.      * Set year1
  400.      *
  401.      * @param integer $year1
  402.      *
  403.      * @return ReservationLoungeProfile
  404.      */
  405.     public function setYear1($year1)
  406.     {
  407.         $this->year1 $year1;
  408.         return $this;
  409.     }
  410.     /**
  411.      * Get year1
  412.      *
  413.      * @return integer
  414.      */
  415.     public function getYear1()
  416.     {
  417.         return $this->year1;
  418.     }
  419.     /**
  420.      * Set year2
  421.      *
  422.      * @param integer $year2
  423.      *
  424.      * @return ReservationLoungeProfile
  425.      */
  426.     public function setYear2($year2)
  427.     {
  428.         $this->year2 $year2;
  429.         return $this;
  430.     }
  431.     /**
  432.      * Get year2
  433.      *
  434.      * @return integer
  435.      */
  436.     public function getYear2()
  437.     {
  438.         return $this->year2;
  439.     }
  440.     /**
  441.      * Set month1
  442.      *
  443.      * @param boolean $month1
  444.      *
  445.      * @return ReservationLoungeProfile
  446.      */
  447.     public function setMonth1($month1)
  448.     {
  449.         $this->month1 $month1;
  450.         return $this;
  451.     }
  452.     /**
  453.      * Get month1
  454.      *
  455.      * @return boolean
  456.      */
  457.     public function getMonth1()
  458.     {
  459.         return $this->month1;
  460.     }
  461.     /**
  462.      * Set month2
  463.      *
  464.      * @param boolean $month2
  465.      *
  466.      * @return ReservationLoungeProfile
  467.      */
  468.     public function setMonth2($month2)
  469.     {
  470.         $this->month2 $month2;
  471.         return $this;
  472.     }
  473.     /**
  474.      * Get month2
  475.      *
  476.      * @return boolean
  477.      */
  478.     public function getMonth2()
  479.     {
  480.         return $this->month2;
  481.     }
  482.     /**
  483.      * Set month3
  484.      *
  485.      * @param boolean $month3
  486.      *
  487.      * @return ReservationLoungeProfile
  488.      */
  489.     public function setMonth3($month3)
  490.     {
  491.         $this->month3 $month3;
  492.         return $this;
  493.     }
  494.     /**
  495.      * Get month3
  496.      *
  497.      * @return boolean
  498.      */
  499.     public function getMonth3()
  500.     {
  501.         return $this->month3;
  502.     }
  503.     /**
  504.      * Set month4
  505.      *
  506.      * @param boolean $month4
  507.      *
  508.      * @return ReservationLoungeProfile
  509.      */
  510.     public function setMonth4($month4)
  511.     {
  512.         $this->month4 $month4;
  513.         return $this;
  514.     }
  515.     /**
  516.      * Get month4
  517.      *
  518.      * @return boolean
  519.      */
  520.     public function getMonth4()
  521.     {
  522.         return $this->month4;
  523.     }
  524.     /**
  525.      * Set month5
  526.      *
  527.      * @param boolean $month5
  528.      *
  529.      * @return ReservationLoungeProfile
  530.      */
  531.     public function setMonth5($month5)
  532.     {
  533.         $this->month5 $month5;
  534.         return $this;
  535.     }
  536.     /**
  537.      * Get month5
  538.      *
  539.      * @return boolean
  540.      */
  541.     public function getMonth5()
  542.     {
  543.         return $this->month5;
  544.     }
  545.     /**
  546.      * Set month6
  547.      *
  548.      * @param boolean $month6
  549.      *
  550.      * @return ReservationLoungeProfile
  551.      */
  552.     public function setMonth6($month6)
  553.     {
  554.         $this->month6 $month6;
  555.         return $this;
  556.     }
  557.     /**
  558.      * Get month6
  559.      *
  560.      * @return boolean
  561.      */
  562.     public function getMonth6()
  563.     {
  564.         return $this->month6;
  565.     }
  566.     /**
  567.      * Set month7
  568.      *
  569.      * @param boolean $month7
  570.      *
  571.      * @return ReservationLoungeProfile
  572.      */
  573.     public function setMonth7($month7)
  574.     {
  575.         $this->month7 $month7;
  576.         return $this;
  577.     }
  578.     /**
  579.      * Get month7
  580.      *
  581.      * @return boolean
  582.      */
  583.     public function getMonth7()
  584.     {
  585.         return $this->month7;
  586.     }
  587.     /**
  588.      * Set month8
  589.      *
  590.      * @param boolean $month8
  591.      *
  592.      * @return ReservationLoungeProfile
  593.      */
  594.     public function setMonth8($month8)
  595.     {
  596.         $this->month8 $month8;
  597.         return $this;
  598.     }
  599.     /**
  600.      * Get month8
  601.      *
  602.      * @return boolean
  603.      */
  604.     public function getMonth8()
  605.     {
  606.         return $this->month8;
  607.     }
  608.     /**
  609.      * Set month9
  610.      *
  611.      * @param boolean $month9
  612.      *
  613.      * @return ReservationLoungeProfile
  614.      */
  615.     public function setMonth9($month9)
  616.     {
  617.         $this->month9 $month9;
  618.         return $this;
  619.     }
  620.     /**
  621.      * Get month9
  622.      *
  623.      * @return boolean
  624.      */
  625.     public function getMonth9()
  626.     {
  627.         return $this->month9;
  628.     }
  629.     /**
  630.      * Set month10
  631.      *
  632.      * @param boolean $month10
  633.      *
  634.      * @return ReservationLoungeProfile
  635.      */
  636.     public function setMonth10($month10)
  637.     {
  638.         $this->month10 $month10;
  639.         return $this;
  640.     }
  641.     /**
  642.      * Get month10
  643.      *
  644.      * @return boolean
  645.      */
  646.     public function getMonth10()
  647.     {
  648.         return $this->month10;
  649.     }
  650.     /**
  651.      * Set month11
  652.      *
  653.      * @param boolean $month11
  654.      *
  655.      * @return ReservationLoungeProfile
  656.      */
  657.     public function setMonth11($month11)
  658.     {
  659.         $this->month11 $month11;
  660.         return $this;
  661.     }
  662.     /**
  663.      * Get month11
  664.      *
  665.      * @return boolean
  666.      */
  667.     public function getMonth11()
  668.     {
  669.         return $this->month11;
  670.     }
  671.     /**
  672.      * Set month12
  673.      *
  674.      * @param boolean $month12
  675.      *
  676.      * @return ReservationLoungeProfile
  677.      */
  678.     public function setMonth12($month12)
  679.     {
  680.         $this->month12 $month12;
  681.         return $this;
  682.     }
  683.     /**
  684.      * Get month12
  685.      *
  686.      * @return boolean
  687.      */
  688.     public function getMonth12()
  689.     {
  690.         return $this->month12;
  691.     }
  692.     /**
  693.      * Set day1
  694.      *
  695.      * @param boolean $day1
  696.      *
  697.      * @return ReservationLoungeProfile
  698.      */
  699.     public function setDay1($day1)
  700.     {
  701.         $this->day1 $day1;
  702.         return $this;
  703.     }
  704.     /**
  705.      * Get day1
  706.      *
  707.      * @return boolean
  708.      */
  709.     public function getDay1()
  710.     {
  711.         return $this->day1;
  712.     }
  713.     /**
  714.      * Set day2
  715.      *
  716.      * @param boolean $day2
  717.      *
  718.      * @return ReservationLoungeProfile
  719.      */
  720.     public function setDay2($day2)
  721.     {
  722.         $this->day2 $day2;
  723.         return $this;
  724.     }
  725.     /**
  726.      * Get day2
  727.      *
  728.      * @return boolean
  729.      */
  730.     public function getDay2()
  731.     {
  732.         return $this->day2;
  733.     }
  734.     /**
  735.      * Set day3
  736.      *
  737.      * @param boolean $day3
  738.      *
  739.      * @return ReservationLoungeProfile
  740.      */
  741.     public function setDay3($day3)
  742.     {
  743.         $this->day3 $day3;
  744.         return $this;
  745.     }
  746.     /**
  747.      * Get day3
  748.      *
  749.      * @return boolean
  750.      */
  751.     public function getDay3()
  752.     {
  753.         return $this->day3;
  754.     }
  755.     /**
  756.      * Set day4
  757.      *
  758.      * @param boolean $day4
  759.      *
  760.      * @return ReservationLoungeProfile
  761.      */
  762.     public function setDay4($day4)
  763.     {
  764.         $this->day4 $day4;
  765.         return $this;
  766.     }
  767.     /**
  768.      * Get day4
  769.      *
  770.      * @return boolean
  771.      */
  772.     public function getDay4()
  773.     {
  774.         return $this->day4;
  775.     }
  776.     /**
  777.      * Set day5
  778.      *
  779.      * @param boolean $day5
  780.      *
  781.      * @return ReservationLoungeProfile
  782.      */
  783.     public function setDay5($day5)
  784.     {
  785.         $this->day5 $day5;
  786.         return $this;
  787.     }
  788.     /**
  789.      * Get day5
  790.      *
  791.      * @return boolean
  792.      */
  793.     public function getDay5()
  794.     {
  795.         return $this->day5;
  796.     }
  797.     /**
  798.      * Set day6
  799.      *
  800.      * @param boolean $day6
  801.      *
  802.      * @return ReservationLoungeProfile
  803.      */
  804.     public function setDay6($day6)
  805.     {
  806.         $this->day6 $day6;
  807.         return $this;
  808.     }
  809.     /**
  810.      * Get day6
  811.      *
  812.      * @return boolean
  813.      */
  814.     public function getDay6()
  815.     {
  816.         return $this->day6;
  817.     }
  818.     /**
  819.      * Set day7
  820.      *
  821.      * @param boolean $day7
  822.      *
  823.      * @return ReservationLoungeProfile
  824.      */
  825.     public function setDay7($day7)
  826.     {
  827.         $this->day7 $day7;
  828.         return $this;
  829.     }
  830.     /**
  831.      * Get day7
  832.      *
  833.      * @return boolean
  834.      */
  835.     public function getDay7()
  836.     {
  837.         return $this->day7;
  838.     }
  839.     /**
  840.      * Set title
  841.      *
  842.      * @param string $title
  843.      *
  844.      * @return ReservationLoungeProfile
  845.      */
  846.     public function setTitle($title)
  847.     {
  848.         $this->title $title;
  849.         return $this;
  850.     }
  851.     /**
  852.      * Get title
  853.      *
  854.      * @return string
  855.      */
  856.     public function getTitle()
  857.     {
  858.         return $this->title;
  859.     }
  860.     /**
  861.      * Set priceIsActive
  862.      *
  863.      * @param boolean $priceIsActive
  864.      *
  865.      * @return ReservationLoungeProfile
  866.      */
  867.     public function setPriceIsActive($priceIsActive)
  868.     {
  869.         $this->priceIsActive $priceIsActive;
  870.         return $this;
  871.     }
  872.     /**
  873.      * Get priceIsActive
  874.      *
  875.      * @return boolean
  876.      */
  877.     public function getPriceIsActive()
  878.     {
  879.         return $this->priceIsActive;
  880.     }
  881.     /**
  882.      * Set dateStart
  883.      *
  884.      * @param \DateTime $dateStart
  885.      *
  886.      * @return ReservationLoungeProfile
  887.      */
  888.     public function setDateStart($dateStart)
  889.     {
  890.         $this->dateStart $dateStart;
  891.         return $this;
  892.     }
  893.     /**
  894.      * Get dateStart
  895.      *
  896.      * @return \DateTime
  897.      */
  898.     public function getDateStart()
  899.     {
  900.         return $this->dateStart;
  901.     }
  902.     /**
  903.      * Set dateEnd
  904.      *
  905.      * @param \DateTime $dateEnd
  906.      *
  907.      * @return ReservationLoungeProfile
  908.      */
  909.     public function setDateEnd($dateEnd)
  910.     {
  911.         $this->dateEnd $dateEnd;
  912.         return $this;
  913.     }
  914.     /**
  915.      * Get dateEnd
  916.      *
  917.      * @return \DateTime
  918.      */
  919.     public function getDateEnd()
  920.     {
  921.         return $this->dateEnd;
  922.     }
  923. }