src/MDS/GreenPatioBundle/Entity/ReservationLoungeSimple.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\MDS\GreenPatioBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  6. /**
  7.  * ReservationLoungeSimple
  8.  *
  9.  * @ORM\Table(name="reservation_lounge_simple")
  10.  * @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationLoungeSimpleRepository")
  11.  * @ORM\HasLifecycleCallbacks()
  12.  */
  13. class ReservationLoungeSimple
  14. {
  15.     /**
  16.      * @var int
  17.      *
  18.      * @ORM\Column(name="id", type="integer")
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue(strategy="AUTO")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var string
  25.      *
  26.      * @ORM\Column(name="loungeName", type="string", length=255)
  27.      */
  28.     private $loungeName;
  29.     /**
  30.      * @var int
  31.      *
  32.      * @ORM\Column(name="idLounge", type="integer")
  33.      */
  34.     private $idLounge;
  35.     /**
  36.      * @var \DateTime
  37.      *
  38.      * @ORM\Column(name="dateStart", type="datetime")
  39.      */
  40.     private $dateStart;
  41.     /**
  42.      * @var \DateTime
  43.      *
  44.      * @ORM\Column(name="dateEnd", type="datetime")
  45.      */
  46.     private $dateEnd;
  47.     /**
  48.      * @var int
  49.      *
  50.      * @ORM\Column(name="servicePrice", type="string", length=55)
  51.      */
  52.     private $servicePrice;
  53.     /**
  54.      * @var int
  55.      *
  56.      * @ORM\Column(name="idReservation", type="integer")
  57.      *
  58.      */
  59.     private $idReservation;
  60.     /**
  61.      * @var int
  62.      *
  63.      * @ORM\Column(name="pax", type="integer", nullable=true)
  64.      */
  65.     private $pax;
  66.     /**
  67.      * @var string
  68.      *
  69.      * @ORM\Column(name="type", type="string", length=255, nullable=true)
  70.      */
  71.     private $type;
  72.     /**
  73.      * @var \DateTime
  74.      *
  75.      * @ORM\Column(name="createdAt", type="datetime")
  76.      */
  77.     private $createdAt;
  78.     /**
  79.      * @var int
  80.      *
  81.      * @ORM\Column(name="createdBy", type="integer")
  82.      */
  83.     private $createdBy;
  84.     /**
  85.      * @var \DateTime
  86.      *
  87.      * @ORM\Column(name="updatedAt", type="datetime")
  88.      */
  89.     private $updatedAt;
  90.     /**
  91.      * @var int
  92.      *
  93.      * @ORM\Column(name="updatedBy", type="integer")
  94.      */
  95.     private $updatedBy;
  96.     /**
  97.      * @var string
  98.      *
  99.      * @ORM\Column(name="hourStart", type="string", length=255)
  100.      */
  101.     private $hourStart;
  102.     /**
  103.      * @var string
  104.      *
  105.      * @ORM\Column(name="minStart", type="string", length=255)
  106.      */
  107.     private $minStart;
  108.     /**
  109.      * @var string
  110.      *
  111.      * @ORM\Column(name="hourEnd", type="string", length=255)
  112.      */
  113.     private $hourEnd;
  114.     /**
  115.      * @var string
  116.      *
  117.      * @ORM\Column(name="minEnd", type="string", length=255)
  118.      */
  119.     private $minEnd;
  120.     /**
  121.      * @var int
  122.      *
  123.      * @ORM\Column(name="rankQuote", type="integer", nullable=true)
  124.      * Numero de cotizacion
  125.      */
  126.     private $rankQuote;
  127.     /**
  128.      * Get id
  129.      *
  130.      * @return int
  131.      */
  132.     public function getId()
  133.     {
  134.         return $this->id;
  135.     }
  136.     /**
  137.      * Set loungeName
  138.      *
  139.      * @param string $loungeName
  140.      *
  141.      * @return ReservationLoungeSimple
  142.      */
  143.     public function setLoungeName($loungeName)
  144.     {
  145.         $this->loungeName $loungeName;
  146.         return $this;
  147.     }
  148.     /**
  149.      * Get loungeName
  150.      *
  151.      * @return string
  152.      */
  153.     public function getLoungeName()
  154.     {
  155.         return $this->loungeName;
  156.     }
  157.     /**
  158.      * Set idLounge
  159.      *
  160.      * @param integer $idLounge
  161.      *
  162.      * @return ReservationLoungeSimple
  163.      */
  164.     public function setIdLounge($idLounge)
  165.     {
  166.         $this->idLounge $idLounge;
  167.         return $this;
  168.     }
  169.     /**
  170.      * Get idLounge
  171.      *
  172.      * @return int
  173.      */
  174.     public function getIdLounge()
  175.     {
  176.         return $this->idLounge;
  177.     }
  178.     /**
  179.      * Set dateStart
  180.      *
  181.      * @param \DateTime $dateStart
  182.      *
  183.      * @return ReservationLoungeSimple
  184.      */
  185.     public function setDateStart($dateStart)
  186.     {
  187.         $this->dateStart $dateStart;
  188.         return $this;
  189.     }
  190.     /**
  191.      * Get dateStart
  192.      *
  193.      * @return \DateTime
  194.      */
  195.     public function getDateStart()
  196.     {
  197.         return $this->dateStart;
  198.     }
  199.     /**
  200.      * Set dateEnd
  201.      *
  202.      * @param \DateTime $dateEnd
  203.      *
  204.      * @return ReservationLoungeSimple
  205.      */
  206.     public function setDateEnd($dateEnd)
  207.     {
  208.         $this->dateEnd $dateEnd;
  209.         return $this;
  210.     }
  211.     /**
  212.      * Get dateEnd
  213.      *
  214.      * @return \DateTime
  215.      */
  216.     public function getDateEnd()
  217.     {
  218.         return $this->dateEnd;
  219.     }
  220.     /**
  221.      * Set pax
  222.      *
  223.      * @param integer $pax
  224.      *
  225.      * @return ReservationLoungeSimple
  226.      */
  227.     public function setPax($pax)
  228.     {
  229.         $this->pax $pax;
  230.         return $this;
  231.     }
  232.     /**
  233.      * Get pax
  234.      *
  235.      * @return int
  236.      */
  237.     public function getPax()
  238.     {
  239.         return $this->pax;
  240.     }
  241.     /**
  242.      * Set type
  243.      *
  244.      * @param string $type
  245.      *
  246.      * @return ReservationLoungeSimple
  247.      */
  248.     public function setType($type)
  249.     {
  250.         $this->type $type;
  251.         return $this;
  252.     }
  253.     /**
  254.      * Get type
  255.      *
  256.      * @return string
  257.      */
  258.     public function getType()
  259.     {
  260.         return $this->type;
  261.     }
  262.     /**
  263.      * Set createdAt
  264.      *
  265.      * @param \DateTime $createdAt
  266.      *
  267.      * @return ReservationLoungeSimple
  268.      */
  269.     public function setCreatedAt(\Datetime $createdAt)
  270.     {
  271.         $this->createdAt $createdAt;
  272.         return $this;
  273.     }
  274.     /**
  275.      * Get createdAt
  276.      *
  277.      * @return \DateTime
  278.      */
  279.     public function getCreatedAt()
  280.     {
  281.         return $this->createdAt;
  282.     }
  283.     /**
  284.      * Set createdBy
  285.      *
  286.      * @param integer $createdBy
  287.      *
  288.      * @return ReservationLoungeSimple
  289.      */
  290.     public function setCreatedBy($createdBy)
  291.     {
  292.         $this->createdBy $createdBy;
  293.         return $this;
  294.     }
  295.     /**
  296.      * Get createdBy
  297.      *
  298.      * @return int
  299.      */
  300.     public function getCreatedBy()
  301.     {
  302.         return $this->createdBy;
  303.     }
  304.     /**
  305.      * Set updatedAt
  306.      *
  307.      * @param \DateTime $updatedAt
  308.      *
  309.      * @return ReservationLoungeSimple
  310.      */
  311.     public function setUpdatedAt(\Datetime $updatedAt)
  312.     {
  313.         $this->updatedAt $updatedAt;
  314.         return $this;
  315.     }
  316.     /**
  317.      * Get updatedAt
  318.      *
  319.      * @return \DateTime
  320.      */
  321.     public function getUpdatedAt()
  322.     {
  323.         return $this->updatedAt;
  324.     }
  325.     /**
  326.      * Set updatedBy
  327.      *
  328.      * @param integer $updatedBy
  329.      *
  330.      * @return ReservationLoungeSimple
  331.      */
  332.     public function setUpdatedBy($updatedBy)
  333.     {
  334.         $this->updatedBy $updatedBy;
  335.         return $this;
  336.     }
  337.     /**
  338.      * Get updatedBy
  339.      *
  340.      * @return int
  341.      */
  342.     public function getUpdatedBy()
  343.     {
  344.         return $this->updatedBy;
  345.     }
  346.     /**
  347.      * Set hourStart
  348.      *
  349.      * @param string $hourStart
  350.      *
  351.      * @return ReservationLoungeSimple
  352.      */
  353.     public function setHourStart($hourStart)
  354.     {
  355.         $this->hourStart $hourStart;
  356.         return $this;
  357.     }
  358.     /**
  359.      * Get hourStart
  360.      *
  361.      * @return string
  362.      */
  363.     public function getHourStart()
  364.     {
  365.         return $this->hourStart;
  366.     }
  367.     /**
  368.      * Set minStart
  369.      *
  370.      * @param string $minStart
  371.      *
  372.      * @return ReservationLoungeSimple
  373.      */
  374.     public function setMinStart($minStart)
  375.     {
  376.         $this->minStart $minStart;
  377.         return $this;
  378.     }
  379.     /**
  380.      * Get minStart
  381.      *
  382.      * @return string
  383.      */
  384.     public function getMinStart()
  385.     {
  386.         return $this->minStart;
  387.     }
  388.     /**
  389.      * Set hourEnd
  390.      *
  391.      * @param string $hourEnd
  392.      *
  393.      * @return ReservationLoungeSimple
  394.      */
  395.     public function setHourEnd($hourEnd)
  396.     {
  397.         $this->hourEnd $hourEnd;
  398.         return $this;
  399.     }
  400.     /**
  401.      * Get hourEnd
  402.      *
  403.      * @return string
  404.      */
  405.     public function getHourEnd()
  406.     {
  407.         return $this->hourEnd;
  408.     }
  409.     /**
  410.      * Set minEnd
  411.      *
  412.      * @param string $minEnd
  413.      *
  414.      * @return ReservationLoungeSimple
  415.      */
  416.     public function setMinEnd($minEnd)
  417.     {
  418.         $this->minEnd $minEnd;
  419.         return $this;
  420.     }
  421.     /**
  422.      * Get minEnd
  423.      *
  424.      * @return string
  425.      */
  426.     public function getMinEnd()
  427.     {
  428.         return $this->minEnd;
  429.     }
  430.     /**
  431.      * Set idReservation
  432.      *
  433.      * @param integer $idReservation
  434.      *
  435.      * @return ReservationLoungeSimple
  436.      */
  437.     public function setIdReservation($idReservation)
  438.     {
  439.         $this->idReservation $idReservation;
  440.         return $this;
  441.     }
  442.     /**
  443.      * Get idReservation
  444.      *
  445.      * @return integer
  446.      */
  447.     public function getIdReservation()
  448.     {
  449.         return $this->idReservation;
  450.     }
  451.     /**
  452.      * @ORM\PrePersist
  453.      */
  454.     public function setCreatedAtValue()
  455.     {
  456.         $this->createdAt = new \Datetime();
  457.     }
  458.     /**
  459.      * @ORM\PrePersist
  460.      * @ORM\PreUpdate
  461.      */
  462.     public function setUpdatedAtValue()
  463.     {
  464.         $this->updatedAt = new \Datetime();
  465.     }
  466.     /**
  467.      * Set servicePrice
  468.      *
  469.      * @param string $servicePrice
  470.      *
  471.      * @return ReservationLoungeSimple
  472.      */
  473.     public function setServicePrice($servicePrice)
  474.     {
  475.         $this->servicePrice $servicePrice;
  476.         return $this;
  477.     }
  478.     /**
  479.      * Get servicePrice
  480.      *
  481.      * @return string
  482.      */
  483.     public function getServicePrice()
  484.     {
  485.         return $this->servicePrice;
  486.     }
  487.     /**
  488.      * Set rankQuote
  489.      *
  490.      * @param integer $rankQuote
  491.      *
  492.      * @return ReservationLoungeSimple
  493.      */
  494.     public function setRankQuote($rankQuote)
  495.     {
  496.         $this->rankQuote $rankQuote;
  497.         return $this;
  498.     }
  499.     /**
  500.      * Get rankQuote
  501.      *
  502.      * @return int
  503.      */
  504.     public function getRankQuote()
  505.     {
  506.         return $this->rankQuote;
  507.     }
  508. }