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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\GreenPatioBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ReservationInvoice
  6.  *
  7.  * @ORM\Table(name="reservation_invoice")
  8.  * @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationInvoiceRepository")
  9.  */
  10. class ReservationInvoice
  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="master", type="string", length=255)
  24.      */
  25.     private $master 'master';
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="number", type="string", length=255)
  30.      */
  31.     private $number;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="prefix", type="string", length=255, nullable=true)
  36.      */
  37.     private $prefix;
  38.     /**
  39.      * @var \DateTime
  40.      *
  41.      * @ORM\Column(name="dateAt", type="datetime")
  42.      */
  43.     private $dateAt;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="type", type="string", length=255)
  48.      */
  49.     private $type;
  50.     /**
  51.      * @var int
  52.      *
  53.      * @ORM\Column(name="reservationId", type="integer")
  54.      */
  55.     private $reservationId;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="totalNet", type="string", length=255)
  60.      */
  61.     private $totalNet;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="vat", type="text", nullable=true)
  66.      */
  67.     private $vat;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="total", type="string", length=255, nullable=true)
  72.      */
  73.     private $total;
  74.     /**
  75.      * @var string
  76.      *
  77.      * @ORM\Column(name="balance", type="string", length=255, nullable=true)
  78.      */
  79.     private $balance;
  80.     /**
  81.      * @var \DateTime
  82.      *
  83.      * @ORM\Column(name="createdAt", type="datetime")
  84.      */
  85.     private $createdAt;
  86.     /**
  87.      * @var int
  88.      *
  89.      * @ORM\Column(name="createdId", type="integer")
  90.      */
  91.     private $createdId;
  92.     /**
  93.      * @var \DateTime
  94.      *
  95.      * @ORM\Column(name="updatedAt", type="datetime")
  96.      */
  97.     private $updatedAt;
  98.     /**
  99.      * @var int
  100.      *
  101.      * @ORM\Column(name="updatedId", type="integer")
  102.      */
  103.     private $updatedId;
  104.     /**
  105.      * @var string
  106.      *
  107.      * @ORM\Column(name="client_name", type="string", length=255, nullable=true)
  108.      * Nombre del cliente
  109.      */
  110.     private $clientName;
  111.     /**
  112.      * @var string
  113.      *
  114.      * @ORM\Column(name="client_address", type="string", length=255, nullable=true)
  115.      * Direccion del cliente
  116.      */
  117.     private $clientAddress;
  118.     /**
  119.      * @var string
  120.      *
  121.      * @ORM\Column(name="client_document", type="string", length=255, nullable=true)
  122.      * NIF o CIF del cliente
  123.      */
  124.     private $clientDocument;
  125.     /**
  126.      * @var string
  127.      *
  128.      * @ORM\Column(name="client_type", type="string", length=255, nullable=true)
  129.      * Tipo de cliente (cliente o proveedor). Usado para emitir facturas de comision a los proveedores
  130.      */
  131.     private $clientType;
  132.     /**
  133.      * Get id
  134.      *
  135.      * @return int
  136.      */
  137.     public function getId()
  138.     {
  139.         return $this->id;
  140.     }
  141.     /**
  142.      * Set number
  143.      *
  144.      * @param string $number
  145.      *
  146.      * @return ReservationInvoice
  147.      */
  148.     public function setNumber($number)
  149.     {
  150.         $this->number $number;
  151.         return $this;
  152.     }
  153.     /**
  154.      * Get number
  155.      *
  156.      * @return string
  157.      */
  158.     public function getNumber()
  159.     {
  160.         return $this->number;
  161.     }
  162.     /**
  163.      * Set prefix
  164.      *
  165.      * @param string $prefix
  166.      *
  167.      * @return ReservationInvoice
  168.      */
  169.     public function setPrefix($prefix)
  170.     {
  171.         $this->prefix $prefix;
  172.         return $this;
  173.     }
  174.     /**
  175.      * Get prefix
  176.      *
  177.      * @return string
  178.      */
  179.     public function getPrefix()
  180.     {
  181.         return $this->prefix;
  182.     }
  183.     /**
  184.      * Set dateAt
  185.      *
  186.      * @param \DateTime $dateAt
  187.      *
  188.      * @return ReservationInvoice
  189.      */
  190.     public function setDateAt($dateAt)
  191.     {
  192.         $this->dateAt $dateAt;
  193.         return $this;
  194.     }
  195.     /**
  196.      * Get dateAt
  197.      *
  198.      * @return \DateTime
  199.      */
  200.     public function getDateAt()
  201.     {
  202.         return $this->dateAt;
  203.     }
  204.     /**
  205.      * Set type
  206.      *
  207.      * @param string $type
  208.      *
  209.      * @return ReservationInvoice
  210.      */
  211.     public function setType($type)
  212.     {
  213.         $this->type $type;
  214.         return $this;
  215.     }
  216.     /**
  217.      * Get type
  218.      *
  219.      * @return string
  220.      */
  221.     public function getType()
  222.     {
  223.         return $this->type;
  224.     }
  225.     /**
  226.      * Set reservationId
  227.      *
  228.      * @param integer $reservationId
  229.      *
  230.      * @return ReservationInvoice
  231.      */
  232.     public function setReservationId($reservationId)
  233.     {
  234.         $this->reservationId $reservationId;
  235.         return $this;
  236.     }
  237.     /**
  238.      * Get reservationId
  239.      *
  240.      * @return int
  241.      */
  242.     public function getReservationId()
  243.     {
  244.         return $this->reservationId;
  245.     }
  246.     /**
  247.      * Set totalNet
  248.      *
  249.      * @param string $totalNet
  250.      *
  251.      * @return ReservationInvoice
  252.      */
  253.     public function setTotalNet($totalNet)
  254.     {
  255.         $this->totalNet $totalNet;
  256.         return $this;
  257.     }
  258.     /**
  259.      * Get totalNet
  260.      *
  261.      * @return string
  262.      */
  263.     public function getTotalNet()
  264.     {
  265.         return $this->totalNet;
  266.     }
  267.     /**
  268.      * Set vat
  269.      *
  270.      * @param string $vat
  271.      *
  272.      * @return ReservationInvoice
  273.      */
  274.     public function setVat($vat)
  275.     {
  276.         $this->vat $vat;
  277.         return $this;
  278.     }
  279.     /**
  280.      * Get vat
  281.      *
  282.      * @return string
  283.      */
  284.     public function getVat()
  285.     {
  286.         return $this->vat;
  287.     }
  288.     /**
  289.      * Set total
  290.      *
  291.      * @param string $total
  292.      *
  293.      * @return ReservationInvoice
  294.      */
  295.     public function setTotal($total)
  296.     {
  297.         $this->total $total;
  298.         return $this;
  299.     }
  300.     /**
  301.      * Get total
  302.      *
  303.      * @return string
  304.      */
  305.     public function getTotal()
  306.     {
  307.         return $this->total;
  308.     }
  309.     /**
  310.      * Set createdAt
  311.      *
  312.      * @param \DateTime $createdAt
  313.      *
  314.      * @return ReservationInvoice
  315.      */
  316.     public function setCreatedAt($createdAt)
  317.     {
  318.         $this->createdAt $createdAt;
  319.         return $this;
  320.     }
  321.     /**
  322.      * Get createdAt
  323.      *
  324.      * @return \DateTime
  325.      */
  326.     public function getCreatedAt()
  327.     {
  328.         return $this->createdAt;
  329.     }
  330.     /**
  331.      * Set createdId
  332.      *
  333.      * @param integer $createdId
  334.      *
  335.      * @return ReservationInvoice
  336.      */
  337.     public function setCreatedId($createdId)
  338.     {
  339.         $this->createdId $createdId;
  340.         return $this;
  341.     }
  342.     /**
  343.      * Get createdId
  344.      *
  345.      * @return int
  346.      */
  347.     public function getCreatedId()
  348.     {
  349.         return $this->createdId;
  350.     }
  351.     /**
  352.      * Set updatedAt
  353.      *
  354.      * @param \DateTime $updatedAt
  355.      *
  356.      * @return ReservationInvoice
  357.      */
  358.     public function setUpdatedAt($updatedAt)
  359.     {
  360.         $this->updatedAt $updatedAt;
  361.         return $this;
  362.     }
  363.     /**
  364.      * Get updatedAt
  365.      *
  366.      * @return \DateTime
  367.      */
  368.     public function getUpdatedAt()
  369.     {
  370.         return $this->updatedAt;
  371.     }
  372.     /**
  373.      * Set updatedId
  374.      *
  375.      * @param integer $updatedId
  376.      *
  377.      * @return ReservationInvoice
  378.      */
  379.     public function setUpdatedId($updatedId)
  380.     {
  381.         $this->updatedId $updatedId;
  382.         return $this;
  383.     }
  384.     /**
  385.      * Get updatedId
  386.      *
  387.      * @return int
  388.      */
  389.     public function getUpdatedId()
  390.     {
  391.         return $this->updatedId;
  392.     }
  393.     /**
  394.      * Set master
  395.      *
  396.      * @param string $master
  397.      *
  398.      * @return ReservationInvoice
  399.      */
  400.     public function setMaster($master)
  401.     {
  402.         $this->master $master;
  403.         return $this;
  404.     }
  405.     /**
  406.      * Get master
  407.      *
  408.      * @return string
  409.      */
  410.     public function getMaster()
  411.     {
  412.         return $this->master;
  413.     }
  414.     /**
  415.      * Set balance
  416.      *
  417.      * @param string $balance
  418.      *
  419.      * @return ReservationInvoice
  420.      */
  421.     public function setBalance($balance)
  422.     {
  423.         $this->balance $balance;
  424.         return $this;
  425.     }
  426.     /**
  427.      * Get balance
  428.      *
  429.      * @return string
  430.      */
  431.     public function getBalance()
  432.     {
  433.         return $this->balance;
  434.     }
  435.     /**
  436.      * Set clientName
  437.      *
  438.      * @param string $clientName
  439.      *
  440.      * @return ReservationInvoice
  441.      */
  442.     public function setClientName($clientName)
  443.     {
  444.         $this->clientName $clientName;
  445.         return $this;
  446.     }
  447.     /**
  448.      * Get clientName
  449.      *
  450.      * @return string
  451.      */
  452.     public function getClientName()
  453.     {
  454.         return $this->clientName;
  455.     }
  456.     /**
  457.      * Set clientAddress
  458.      *
  459.      * @param string $clientAddress
  460.      *
  461.      * @return ReservationInvoice
  462.      */
  463.     public function setClientAddress($clientAddress)
  464.     {
  465.         $this->clientAddress $clientAddress;
  466.         return $this;
  467.     }
  468.     /**
  469.      * Get clientAddress
  470.      *
  471.      * @return string
  472.      */
  473.     public function getClientAddress()
  474.     {
  475.         return $this->clientAddress;
  476.     }
  477.     /**
  478.      * Set clientDocument
  479.      *
  480.      * @param string $clientDocument
  481.      *
  482.      * @return ReservationInvoice
  483.      */
  484.     public function setClientDocument($clientDocument)
  485.     {
  486.         $this->clientDocument $clientDocument;
  487.         return $this;
  488.     }
  489.     /**
  490.      * Get clientDocument
  491.      *
  492.      * @return string
  493.      */
  494.     public function getClientDocument()
  495.     {
  496.         return $this->clientDocument;
  497.     }
  498.     /**
  499.      * Set clientType
  500.      *
  501.      * @param string $clientType
  502.      *
  503.      * @return ReservationInvoice
  504.      */
  505.     public function setClientType($clientType)
  506.     {
  507.         $this->clientType $clientType;
  508.         return $this;
  509.     }
  510.     /**
  511.      * Get clientType
  512.      *
  513.      * @return string
  514.      */
  515.     public function getClientType()
  516.     {
  517.         return $this->clientType;
  518.     }
  519. }