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

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