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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\GreenPatioBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ReservationInvoiceProformaItems
  6.  *
  7.  * @ORM\Table(name="reservation_invoice_proforma_items")
  8.  * @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationInvoiceProformaItemsRepository")
  9.  */
  10. class ReservationInvoiceProformaItems
  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="controlId", type="integer")
  24.      */
  25.     private $controlId;
  26.     // Lounge, Service, Payment
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="type", type="string", length=255)
  31.      */
  32.     private $type;
  33.     /**
  34.      * @var int
  35.      *
  36.      * @ORM\Column(name="reservationId", type="integer")
  37.      */
  38.     private $reservationId;
  39.     /**
  40.      * @var int
  41.      *
  42.      * @ORM\Column(name="proformaId", type="integer", nullable=true)
  43.      */
  44.     private $proformaId;
  45.     /**
  46.      * Get id
  47.      *
  48.      * @return int
  49.      */
  50.     public function getId()
  51.     {
  52.         return $this->id;
  53.     }
  54.     /**
  55.      * Set type
  56.      *
  57.      * @param string $type
  58.      *
  59.      * @return ReservationInvoiceProformaItems
  60.      */
  61.     public function setType($type)
  62.     {
  63.         $this->type $type;
  64.         return $this;
  65.     }
  66.     /**
  67.      * Get type
  68.      *
  69.      * @return string
  70.      */
  71.     public function getType()
  72.     {
  73.         return $this->type;
  74.     }
  75.     /**
  76.      * Set reservationId
  77.      *
  78.      * @param integer $reservationId
  79.      *
  80.      * @return ReservationInvoiceProformaItems
  81.      */
  82.     public function setReservationId($reservationId)
  83.     {
  84.         $this->reservationId $reservationId;
  85.         return $this;
  86.     }
  87.     /**
  88.      * Get reservationId
  89.      *
  90.      * @return int
  91.      */
  92.     public function getReservationId()
  93.     {
  94.         return $this->reservationId;
  95.     }
  96.     /**
  97.      * Set proformaId
  98.      *
  99.      * @param integer $proformaId
  100.      *
  101.      * @return ReservationInvoiceProformaItems
  102.      */
  103.     public function setProformaId($proformaId)
  104.     {
  105.         $this->proformaId $proformaId;
  106.         return $this;
  107.     }
  108.     /**
  109.      * Get proformaId
  110.      *
  111.      * @return int
  112.      */
  113.     public function getProformaId()
  114.     {
  115.         return $this->proformaId;
  116.     }
  117.     /**
  118.      * Set controlId
  119.      *
  120.      * @param integer $controlId
  121.      *
  122.      * @return ReservationInvoiceProformaItems
  123.      */
  124.     public function setControlId($controlId)
  125.     {
  126.         $this->controlId $controlId;
  127.         return $this;
  128.     }
  129.     /**
  130.      * Get controlId
  131.      *
  132.      * @return integer
  133.      */
  134.     public function getControlId()
  135.     {
  136.         return $this->controlId;
  137.     }
  138. }