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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\GreenPatioBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ReservationLounge
  6.  *
  7.  * @ORM\Table(name="reservation_lounge")
  8.  * @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationLoungeRepository")
  9.  */
  10. class ReservationLounge
  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 string
  22.      *
  23.      * @ORM\Column(name="loungeName", type="string", length=255, nullable=true)
  24.      */
  25.     private $loungeName;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="type", type="string", length=255, nullable=true)
  30.      */
  31.     private $type;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="idLounge", type="integer")
  36.      *
  37.      */
  38.     private $idLounge;
  39.     /**
  40.      * @var int
  41.      *
  42.      * @ORM\Column(name="idPeriod", type="integer")
  43.      *
  44.      */
  45.     private $idPeriod;
  46.     /**
  47.      * @var \DateTime
  48.      *
  49.      * @ORM\Column(name="dateStart", type="datetime")
  50.      */
  51.     private $dateStart;
  52.     /**
  53.      * @var string
  54.      *
  55.      * @ORM\Column(name="hourStart", type="string", length=255)
  56.      */
  57.     private $hourStart;
  58.     /**
  59.      * @var string
  60.      *
  61.      * @ORM\Column(name="minStart", type="string", length=255)
  62.      */
  63.     private $minStart;
  64.     /**
  65.      * @var \DateTime
  66.      *
  67.      * @ORM\Column(name="dateEnd", type="datetime")
  68.      */
  69.     private $dateEnd;
  70.     /**
  71.      * @var string
  72.      *
  73.      * @ORM\Column(name="hourEnd", type="string", length=255)
  74.      */
  75.     private $hourEnd;
  76.     /**
  77.      * @var string
  78.      *
  79.      * @ORM\Column(name="minEnd", type="string", length=255)
  80.      */
  81.     private $minEnd;
  82.     /**
  83.      * @var int
  84.      *
  85.      * @ORM\Column(name="idService", type="integer", nullable=true)
  86.      *
  87.      */
  88.     private $idService;
  89.     /**
  90.      * @var string
  91.      *
  92.      * @ORM\Column(name="serviceName", type="text")
  93.      */
  94.     private $serviceName;
  95.     /**
  96.      * @var string
  97.      *
  98.      * @ORM\Column(name="servicePrice", type="string", length=255)
  99.      */
  100.     private $servicePrice;
  101.     /**
  102.      * @var int
  103.      *
  104.      * @ORM\Column(name="idReservation", type="integer")
  105.      *
  106.      */
  107.     private $idReservation;
  108.     /**
  109.      * @var \DateTime
  110.      *
  111.      * @ORM\Column(name="createdAt", type="datetime")
  112.      */
  113.     private $createdAt;
  114.     /**
  115.      * @var string
  116.      *
  117.      * @ORM\Column(name="createdBy", type="string", length=255)
  118.      */
  119.     private $createdBy;
  120.     /**
  121.      * @var string
  122.      *
  123.      * @ORM\Column(name="otherPriceSave", type="string", nullable=true)
  124.      */
  125.     private $otherPriceSave;
  126.     /**
  127.      * @var string
  128.      *
  129.      * @ORM\Column(name="mounting", type="string", length=255, nullable=true)
  130.      */
  131.     private $mounting;
  132.     /**
  133.      * @var string
  134.      *
  135.      * @ORM\Column(name="mountingLapse", type="string", length=255, nullable=true)
  136.      */
  137.     private $mountingLapse;
  138.     /**
  139.      * @var \DateTime
  140.      *
  141.      * @ORM\Column(name="mountingDate", type="datetime", nullable=true)
  142.      */
  143.     private $mountingDate;
  144.     /**
  145.      * @var string
  146.      *
  147.      * @ORM\Column(name="mountingHourStart", type="string", length=255, nullable=true)
  148.      */
  149.     private $mountingHourStart;
  150.     /**
  151.      * @var string
  152.      *
  153.      * @ORM\Column(name="mountingMinStart", type="string", length=255, nullable=true)
  154.      */
  155.     private $mountingMinStart;
  156.     /**
  157.      * @var string
  158.      *
  159.      * @ORM\Column(name="mountingHourEnd", type="string", length=255, nullable=true)
  160.      */
  161.     private $mountingHourEnd;
  162.     /**
  163.      * @var string
  164.      *
  165.      * @ORM\Column(name="mountingMinEnd", type="string", length=255, nullable=true)
  166.      */
  167.     private $mountingMinEnd;
  168.     /**
  169.      * @var int
  170.      *
  171.      * @ORM\Column(name="mountingPrice", type="integer", nullable=true)
  172.      *
  173.      */
  174.     private $mountingPrice;
  175.     /**
  176.      * @var string
  177.      *
  178.      * @ORM\Column(name="removalLapse", type="string", length=255, nullable=true)
  179.      */
  180.     private $removalLapse;
  181.     /**
  182.      * @var \DateTime
  183.      *
  184.      * @ORM\Column(name="removalDate", type="datetime", nullable=true)
  185.      */
  186.     private $removalDate;
  187.     /**
  188.      * @var string
  189.      *
  190.      * @ORM\Column(name="removalHourStart", type="string", length=255, nullable=true)
  191.      */
  192.     private $removalHourStart;
  193.     /**
  194.      * @var string
  195.      *
  196.      * @ORM\Column(name="removalMinStart", type="string", length=255, nullable=true)
  197.      */
  198.     private $removalMinStart;
  199.     /**
  200.      * @var string
  201.      *
  202.      * @ORM\Column(name="removalHourEnd", type="string", length=255, nullable=true)
  203.      */
  204.     private $removalHourEnd;
  205.     /**
  206.      * @var string
  207.      *
  208.      * @ORM\Column(name="removalMinEnd", type="string", length=255, nullable=true)
  209.      */
  210.     private $removalMinEnd;
  211.     /**
  212.      * @var int
  213.      *
  214.      * @ORM\Column(name="removalPrice", type="integer", nullable=true)
  215.      *
  216.      */
  217.     private $removalPrice;
  218.     /**
  219.      * @var \DateTime
  220.      *
  221.      * @ORM\Column(name="updatedAt", type="datetime")
  222.      */
  223.     private $updatedAt;
  224.     /**
  225.      * @var string
  226.      *
  227.      * @ORM\Column(name="updatedBy", type="string", length=255)
  228.      */
  229.     private $updatedBy;
  230.     /**
  231.      * @var int
  232.      *
  233.      * @ORM\Column(name="pax", type="integer", nullable=true)
  234.      *
  235.      */
  236.     private $pax;
  237.     /**
  238.      * Get id
  239.      *
  240.      * @return int
  241.      */
  242.     public function getId()
  243.     {
  244.         return $this->id;
  245.     }
  246.     /**
  247.      * Set dateStart
  248.      *
  249.      * @param \DateTime $dateStart
  250.      *
  251.      * @return ReservationLounge
  252.      */
  253.     public function setDateStart($dateStart)
  254.     {
  255.         $this->dateStart $dateStart;
  256.         return $this;
  257.     }
  258.     /**
  259.      * Get dateStart
  260.      *
  261.      * @return \DateTime
  262.      */
  263.     public function getDateStart()
  264.     {
  265.         return $this->dateStart;
  266.     }
  267.     /**
  268.      * Set loungeName
  269.      *
  270.      * @param string $loungeName
  271.      *
  272.      * @return ReservationLounge
  273.      */
  274.     public function setLoungeName($loungeName)
  275.     {
  276.         $this->loungeName $loungeName;
  277.         return $this;
  278.     }
  279.     /**
  280.      * Get loungeName
  281.      *
  282.      * @return string
  283.      */
  284.     public function getLoungeName()
  285.     {
  286.         return $this->loungeName;
  287.     }
  288.     /**
  289.      * Set idLounge
  290.      *
  291.      * @param integer $idLounge
  292.      *
  293.      * @return ReservationLounge
  294.      */
  295.     public function setIdLounge($idLounge)
  296.     {
  297.         $this->idLounge $idLounge;
  298.         return $this;
  299.     }
  300.     /**
  301.      * Get idLounge
  302.      *
  303.      * @return integer
  304.      */
  305.     public function getIdLounge()
  306.     {
  307.         return $this->idLounge;
  308.     }
  309.     /**
  310.      * Set hourStart
  311.      *
  312.      * @param string $hourStart
  313.      *
  314.      * @return ReservationLounge
  315.      */
  316.     public function setHourStart($hourStart)
  317.     {
  318.         $this->hourStart $hourStart;
  319.         return $this;
  320.     }
  321.     /**
  322.      * Get hourStart
  323.      *
  324.      * @return string
  325.      */
  326.     public function getHourStart()
  327.     {
  328.         return $this->hourStart;
  329.     }
  330.     /**
  331.      * Set minStart
  332.      *
  333.      * @param string $minStart
  334.      *
  335.      * @return ReservationLounge
  336.      */
  337.     public function setMinStart($minStart)
  338.     {
  339.         $this->minStart $minStart;
  340.         return $this;
  341.     }
  342.     /**
  343.      * Get minStart
  344.      *
  345.      * @return string
  346.      */
  347.     public function getMinStart()
  348.     {
  349.         return $this->minStart;
  350.     }
  351.     /**
  352.      * Set dateEnd
  353.      *
  354.      * @param \DateTime $dateEnd
  355.      *
  356.      * @return ReservationLounge
  357.      */
  358.     public function setDateEnd($dateEnd)
  359.     {
  360.         $this->dateEnd $dateEnd;
  361.         return $this;
  362.     }
  363.     /**
  364.      * Get dateEnd
  365.      *
  366.      * @return \DateTime
  367.      */
  368.     public function getDateEnd()
  369.     {
  370.         return $this->dateEnd;
  371.     }
  372.     /**
  373.      * Set hourEnd
  374.      *
  375.      * @param string $hourEnd
  376.      *
  377.      * @return ReservationLounge
  378.      */
  379.     public function setHourEnd($hourEnd)
  380.     {
  381.         $this->hourEnd $hourEnd;
  382.         return $this;
  383.     }
  384.     /**
  385.      * Get hourEnd
  386.      *
  387.      * @return string
  388.      */
  389.     public function getHourEnd()
  390.     {
  391.         return $this->hourEnd;
  392.     }
  393.     /**
  394.      * Set minEnd
  395.      *
  396.      * @param string $minEnd
  397.      *
  398.      * @return ReservationLounge
  399.      */
  400.     public function setMinEnd($minEnd)
  401.     {
  402.         $this->minEnd $minEnd;
  403.         return $this;
  404.     }
  405.     /**
  406.      * Get minEnd
  407.      *
  408.      * @return string
  409.      */
  410.     public function getMinEnd()
  411.     {
  412.         return $this->minEnd;
  413.     }
  414.     /**
  415.      * Set idService
  416.      *
  417.      * @param integer $idService
  418.      *
  419.      * @return ReservationLounge
  420.      */
  421.     public function setIdService($idService)
  422.     {
  423.         $this->idService $idService;
  424.         return $this;
  425.     }
  426.     /**
  427.      * Get idService
  428.      *
  429.      * @return integer
  430.      */
  431.     public function getIdService()
  432.     {
  433.         return $this->idService;
  434.     }
  435.     /**
  436.      * Set servicePrice
  437.      *
  438.      * @param string $servicePrice
  439.      *
  440.      * @return ReservationLounge
  441.      */
  442.     public function setServicePrice($servicePrice)
  443.     {
  444.         $this->servicePrice $servicePrice;
  445.         return $this;
  446.     }
  447.     /**
  448.      * Get servicePrice
  449.      *
  450.      * @return string
  451.      */
  452.     public function getServicePrice()
  453.     {
  454.         return $this->servicePrice;
  455.     }
  456.     /**
  457.      * Set idReservation
  458.      *
  459.      * @param integer $idReservation
  460.      *
  461.      * @return ReservationLounge
  462.      */
  463.     public function setIdReservation($idReservation)
  464.     {
  465.         $this->idReservation $idReservation;
  466.         return $this;
  467.     }
  468.     /**
  469.      * Get idReservation
  470.      *
  471.      * @return integer
  472.      */
  473.     public function getIdReservation()
  474.     {
  475.         return $this->idReservation;
  476.     }
  477.     /**
  478.      * Set createdAt
  479.      *
  480.      * @param \DateTime $createdAt
  481.      *
  482.      * @return ReservationLounge
  483.      */
  484.     public function setCreatedAt($createdAt)
  485.     {
  486.         $this->createdAt $createdAt;
  487.         return $this;
  488.     }
  489.     /**
  490.      * Get createdAt
  491.      *
  492.      * @return \DateTime
  493.      */
  494.     public function getCreatedAt()
  495.     {
  496.         return $this->createdAt;
  497.     }
  498.     /**
  499.      * Set createdBy
  500.      *
  501.      * @param string $createdBy
  502.      *
  503.      * @return ReservationLounge
  504.      */
  505.     public function setCreatedBy($createdBy)
  506.     {
  507.         $this->createdBy $createdBy;
  508.         return $this;
  509.     }
  510.     /**
  511.      * Get createdBy
  512.      *
  513.      * @return string
  514.      */
  515.     public function getCreatedBy()
  516.     {
  517.         return $this->createdBy;
  518.     }
  519.     /**
  520.      * Set updatedAt
  521.      *
  522.      * @param \DateTime $updatedAt
  523.      *
  524.      * @return ReservationLounge
  525.      */
  526.     public function setUpdatedAt($updatedAt)
  527.     {
  528.         $this->updatedAt $updatedAt;
  529.         return $this;
  530.     }
  531.     /**
  532.      * Get updatedAt
  533.      *
  534.      * @return \DateTime
  535.      */
  536.     public function getUpdatedAt()
  537.     {
  538.         return $this->updatedAt;
  539.     }
  540.     /**
  541.      * Set updatedBy
  542.      *
  543.      * @param string $updatedBy
  544.      *
  545.      * @return ReservationLounge
  546.      */
  547.     public function setUpdatedBy($updatedBy)
  548.     {
  549.         $this->updatedBy $updatedBy;
  550.         return $this;
  551.     }
  552.     /**
  553.      * Get updatedBy
  554.      *
  555.      * @return string
  556.      */
  557.     public function getUpdatedBy()
  558.     {
  559.         return $this->updatedBy;
  560.     }
  561.     /**
  562.      * Set idPeriod
  563.      *
  564.      * @param integer $idPeriod
  565.      *
  566.      * @return ReservationLounge
  567.      */
  568.     public function setIdPeriod($idPeriod)
  569.     {
  570.         $this->idPeriod $idPeriod;
  571.         return $this;
  572.     }
  573.     /**
  574.      * Get idPeriod
  575.      *
  576.      * @return integer
  577.      */
  578.     public function getIdPeriod()
  579.     {
  580.         return $this->idPeriod;
  581.     }
  582.     /**
  583.      * Set pax
  584.      *
  585.      * @param integer $pax
  586.      *
  587.      * @return ReservationLounge
  588.      */
  589.     public function setPax($pax)
  590.     {
  591.         $this->pax $pax;
  592.         return $this;
  593.     }
  594.     /**
  595.      * Get pax
  596.      *
  597.      * @return integer
  598.      */
  599.     public function getPax()
  600.     {
  601.         return $this->pax;
  602.     }
  603.     /**
  604.      * Set mounting
  605.      *
  606.      * @param string $mounting
  607.      *
  608.      * @return ReservationLounge
  609.      */
  610.     public function setMounting($mounting)
  611.     {
  612.         $this->mounting $mounting;
  613.         return $this;
  614.     }
  615.     /**
  616.      * Get mounting
  617.      *
  618.      * @return string
  619.      */
  620.     public function getMounting()
  621.     {
  622.         return $this->mounting;
  623.     }
  624.     /**
  625.      * Set mountingLapse
  626.      *
  627.      * @param string $mountingLapse
  628.      *
  629.      * @return ReservationLounge
  630.      */
  631.     public function setMountingLapse($mountingLapse)
  632.     {
  633.         $this->mountingLapse $mountingLapse;
  634.         return $this;
  635.     }
  636.     /**
  637.      * Get mountingLapse
  638.      *
  639.      * @return string
  640.      */
  641.     public function getMountingLapse()
  642.     {
  643.         return $this->mountingLapse;
  644.     }
  645.     /**
  646.      * Set mountingDate
  647.      *
  648.      * @param \DateTime $mountingDate
  649.      *
  650.      * @return ReservationLounge
  651.      */
  652.     public function setMountingDate($mountingDate)
  653.     {
  654.         $this->mountingDate $mountingDate;
  655.         return $this;
  656.     }
  657.     /**
  658.      * Get mountingDate
  659.      *
  660.      * @return \DateTime
  661.      */
  662.     public function getMountingDate()
  663.     {
  664.         return $this->mountingDate;
  665.     }
  666.     /**
  667.      * Set mountingHourStart
  668.      *
  669.      * @param string $mountingHourStart
  670.      *
  671.      * @return ReservationLounge
  672.      */
  673.     public function setMountingHourStart($mountingHourStart)
  674.     {
  675.         $this->mountingHourStart $mountingHourStart;
  676.         return $this;
  677.     }
  678.     /**
  679.      * Get mountingHourStart
  680.      *
  681.      * @return string
  682.      */
  683.     public function getMountingHourStart()
  684.     {
  685.         return $this->mountingHourStart;
  686.     }
  687.     /**
  688.      * Set mountingMinStart
  689.      *
  690.      * @param string $mountingMinStart
  691.      *
  692.      * @return ReservationLounge
  693.      */
  694.     public function setMountingMinStart($mountingMinStart)
  695.     {
  696.         $this->mountingMinStart $mountingMinStart;
  697.         return $this;
  698.     }
  699.     /**
  700.      * Get mountingMinStart
  701.      *
  702.      * @return string
  703.      */
  704.     public function getMountingMinStart()
  705.     {
  706.         return $this->mountingMinStart;
  707.     }
  708.     /**
  709.      * Set mountingPrice
  710.      *
  711.      * @param integer $mountingPrice
  712.      *
  713.      * @return ReservationLounge
  714.      */
  715.     public function setMountingPrice($mountingPrice)
  716.     {
  717.         $this->mountingPrice $mountingPrice;
  718.         return $this;
  719.     }
  720.     /**
  721.      * Get mountingPrice
  722.      *
  723.      * @return integer
  724.      */
  725.     public function getMountingPrice()
  726.     {
  727.         return $this->mountingPrice;
  728.     }
  729.     /**
  730.      * Set removalLapse
  731.      *
  732.      * @param string $removalLapse
  733.      *
  734.      * @return ReservationLounge
  735.      */
  736.     public function setRemovalLapse($removalLapse)
  737.     {
  738.         $this->removalLapse $removalLapse;
  739.         return $this;
  740.     }
  741.     /**
  742.      * Get removalLapse
  743.      *
  744.      * @return string
  745.      */
  746.     public function getRemovalLapse()
  747.     {
  748.         return $this->removalLapse;
  749.     }
  750.     /**
  751.      * Set removalDate
  752.      *
  753.      * @param \DateTime $removalDate
  754.      *
  755.      * @return ReservationLounge
  756.      */
  757.     public function setRemovalDate($removalDate)
  758.     {
  759.         $this->removalDate $removalDate;
  760.         return $this;
  761.     }
  762.     /**
  763.      * Get removalDate
  764.      *
  765.      * @return \DateTime
  766.      */
  767.     public function getRemovalDate()
  768.     {
  769.         return $this->removalDate;
  770.     }
  771.     /**
  772.      * Set removalHourStart
  773.      *
  774.      * @param string $removalHourStart
  775.      *
  776.      * @return ReservationLounge
  777.      */
  778.     public function setRemovalHourStart($removalHourStart)
  779.     {
  780.         $this->removalHourStart $removalHourStart;
  781.         return $this;
  782.     }
  783.     /**
  784.      * Get removalHourStart
  785.      *
  786.      * @return string
  787.      */
  788.     public function getRemovalHourStart()
  789.     {
  790.         return $this->removalHourStart;
  791.     }
  792.     /**
  793.      * Set removalMinStart
  794.      *
  795.      * @param string $removalMinStart
  796.      *
  797.      * @return ReservationLounge
  798.      */
  799.     public function setRemovalMinStart($removalMinStart)
  800.     {
  801.         $this->removalMinStart $removalMinStart;
  802.         return $this;
  803.     }
  804.     /**
  805.      * Get removalMinStart
  806.      *
  807.      * @return string
  808.      */
  809.     public function getRemovalMinStart()
  810.     {
  811.         return $this->removalMinStart;
  812.     }
  813.     /**
  814.      * Set removalPrice
  815.      *
  816.      * @param integer $removalPrice
  817.      *
  818.      * @return ReservationLounge
  819.      */
  820.     public function setRemovalPrice($removalPrice)
  821.     {
  822.         $this->removalPrice $removalPrice;
  823.         return $this;
  824.     }
  825.     /**
  826.      * Get removalPrice
  827.      *
  828.      * @return integer
  829.      */
  830.     public function getRemovalPrice()
  831.     {
  832.         return $this->removalPrice;
  833.     }
  834.     /**
  835.      * Set mountingHourEnd
  836.      *
  837.      * @param string $mountingHourEnd
  838.      *
  839.      * @return ReservationLounge
  840.      */
  841.     public function setMountingHourEnd($mountingHourEnd)
  842.     {
  843.         $this->mountingHourEnd $mountingHourEnd;
  844.         return $this;
  845.     }
  846.     /**
  847.      * Get mountingHourEnd
  848.      *
  849.      * @return string
  850.      */
  851.     public function getMountingHourEnd()
  852.     {
  853.         return $this->mountingHourEnd;
  854.     }
  855.     /**
  856.      * Set mountingMinEnd
  857.      *
  858.      * @param string $mountingMinEnd
  859.      *
  860.      * @return ReservationLounge
  861.      */
  862.     public function setMountingMinEnd($mountingMinEnd)
  863.     {
  864.         $this->mountingMinEnd $mountingMinEnd;
  865.         return $this;
  866.     }
  867.     /**
  868.      * Get mountingMinEnd
  869.      *
  870.      * @return string
  871.      */
  872.     public function getMountingMinEnd()
  873.     {
  874.         return $this->mountingMinEnd;
  875.     }
  876.     /**
  877.      * Set removalHourEnd
  878.      *
  879.      * @param string $removalHourEnd
  880.      *
  881.      * @return ReservationLounge
  882.      */
  883.     public function setRemovalHourEnd($removalHourEnd)
  884.     {
  885.         $this->removalHourEnd $removalHourEnd;
  886.         return $this;
  887.     }
  888.     /**
  889.      * Get removalHourEnd
  890.      *
  891.      * @return string
  892.      */
  893.     public function getRemovalHourEnd()
  894.     {
  895.         return $this->removalHourEnd;
  896.     }
  897.     /**
  898.      * Set removalMinEnd
  899.      *
  900.      * @param string $removalMinEnd
  901.      *
  902.      * @return ReservationLounge
  903.      */
  904.     public function setRemovalMinEnd($removalMinEnd)
  905.     {
  906.         $this->removalMinEnd $removalMinEnd;
  907.         return $this;
  908.     }
  909.     /**
  910.      * Get removalMinEnd
  911.      *
  912.      * @return string
  913.      */
  914.     public function getRemovalMinEnd()
  915.     {
  916.         return $this->removalMinEnd;
  917.     }
  918.     /**
  919.      * Set serviceName
  920.      *
  921.      * @param string $serviceName
  922.      *
  923.      * @return ReservationLounge
  924.      */
  925.     public function setServiceName($serviceName)
  926.     {
  927.         $this->serviceName $serviceName;
  928.         return $this;
  929.     }
  930.     /**
  931.      * Get serviceName
  932.      *
  933.      * @return string
  934.      */
  935.     public function getServiceName()
  936.     {
  937.         return $this->serviceName;
  938.     }
  939.     /**
  940.      * Set otherPriceSave
  941.      *
  942.      * @param string $otherPriceSave
  943.      *
  944.      * @return ReservationLounge
  945.      */
  946.     public function setOtherPriceSave($otherPriceSave)
  947.     {
  948.         $this->otherPriceSave $otherPriceSave;
  949.         return $this;
  950.     }
  951.     /**
  952.      * Get otherPriceSave
  953.      *
  954.      * @return string
  955.      */
  956.     public function getOtherPriceSave()
  957.     {
  958.         return $this->otherPriceSave;
  959.     }
  960.     /**
  961.      * Set type
  962.      *
  963.      * @param string $type
  964.      *
  965.      * @return ReservationLounge
  966.      */
  967.     public function setType($type)
  968.     {
  969.         $this->type $type;
  970.         return $this;
  971.     }
  972.     /**
  973.      * Get type
  974.      *
  975.      * @return string
  976.      */
  977.     public function getType()
  978.     {
  979.         return $this->type;
  980.     }
  981. }