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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\GreenPatioBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ReservationProformaDeposit
  6.  *
  7.  * @ORM\Table(name="reservation_proforma_deposit")
  8.  * @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationProformaDepositRepository")
  9.  */
  10. class ReservationProformaDeposit
  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="prefix", type="string", length=255, nullable=true)
  24.      */
  25.     private $prefix;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="number", type="string", length=255, nullable=true)
  30.      */
  31.     private $number;
  32.     /**
  33.      * @var /datetime
  34.      *
  35.      * @ORM\Column(name="date_at", type="datetime")
  36.      */
  37.     private $dateAt;
  38.     /**
  39.      * @var int
  40.      *
  41.      * @ORM\Column(name="reservation_id", type="integer")
  42.      */
  43.     private $reservationId;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="name", type="string", length=255)
  48.      */
  49.     private $name;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="amount", type="string", length=255)
  54.      */
  55.     private $amount;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="iva", type="string", length=255)
  60.      */
  61.     private $iva;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="total", type="string", length=255)
  66.      */
  67.     private $total;
  68.     /**
  69.      * @var \DateTime
  70.      *
  71.      * @ORM\Column(name="created_at", type="datetime")
  72.      */
  73.     private $createdAt;
  74.     /**
  75.      * @var int
  76.      *
  77.      * @ORM\Column(name="created_id", type="integer")
  78.      */
  79.     private $createdId;
  80.     /**
  81.      * @var \DateTime
  82.      *
  83.      * @ORM\Column(name="updated_at", type="datetime")
  84.      */
  85.     private $updatedAt;
  86.     /**
  87.      * @var int
  88.      *
  89.      * @ORM\Column(name="updated_id", type="integer")
  90.      */
  91.     private $updatedId;
  92.     /**
  93.      * Get id
  94.      *
  95.      * @return int
  96.      */
  97.     public function getId()
  98.     {
  99.         return $this->id;
  100.     }
  101.     /**
  102.      * Set prefix
  103.      *
  104.      * @param string $prefix
  105.      *
  106.      * @return ReservationProformaDeposit
  107.      */
  108.     public function setPrefix($prefix)
  109.     {
  110.         $this->prefix $prefix;
  111.         return $this;
  112.     }
  113.     /**
  114.      * Get prefix
  115.      *
  116.      * @return string
  117.      */
  118.     public function getPrefix()
  119.     {
  120.         return $this->prefix;
  121.     }
  122.     /**
  123.      * Set number
  124.      *
  125.      * @param string $number
  126.      *
  127.      * @return ReservationProformaDeposit
  128.      */
  129.     public function setNumber($number)
  130.     {
  131.         $this->number $number;
  132.         return $this;
  133.     }
  134.     /**
  135.      * Get number
  136.      *
  137.      * @return string
  138.      */
  139.     public function getNumber()
  140.     {
  141.         return $this->number;
  142.     }
  143.     /**
  144.      * Set dateAt
  145.      *
  146.      * @param \DateTime $dateAt
  147.      *
  148.      * @return ReservationProformaDeposit
  149.      */
  150.     public function setDateAt($dateAt)
  151.     {
  152.         $this->dateAt $dateAt;
  153.         return $this;
  154.     }
  155.     /**
  156.      * Get dateAt
  157.      *
  158.      * @return \DateTime
  159.      */
  160.     public function getDateAt()
  161.     {
  162.         return $this->dateAt;
  163.     }
  164.     /**
  165.      * Set reservationId
  166.      *
  167.      * @param integer $reservationId
  168.      *
  169.      * @return ReservationProformaDeposit
  170.      */
  171.     public function setReservationId($reservationId)
  172.     {
  173.         $this->reservationId $reservationId;
  174.         return $this;
  175.     }
  176.     /**
  177.      * Get reservationId
  178.      *
  179.      * @return integer
  180.      */
  181.     public function getReservationId()
  182.     {
  183.         return $this->reservationId;
  184.     }
  185.     /**
  186.      * Set name
  187.      *
  188.      * @param string $name
  189.      *
  190.      * @return ReservationProformaDeposit
  191.      */
  192.     public function setName($name)
  193.     {
  194.         $this->name $name;
  195.         return $this;
  196.     }
  197.     /**
  198.      * Get name
  199.      *
  200.      * @return string
  201.      */
  202.     public function getName()
  203.     {
  204.         return $this->name;
  205.     }
  206.     /**
  207.      * Set amount
  208.      *
  209.      * @param string $amount
  210.      *
  211.      * @return ReservationProformaDeposit
  212.      */
  213.     public function setAmount($amount)
  214.     {
  215.         $this->amount $amount;
  216.         return $this;
  217.     }
  218.     /**
  219.      * Get amount
  220.      *
  221.      * @return string
  222.      */
  223.     public function getAmount()
  224.     {
  225.         return $this->amount;
  226.     }
  227.     /**
  228.      * Set iva
  229.      *
  230.      * @param string $iva
  231.      *
  232.      * @return ReservationProformaDeposit
  233.      */
  234.     public function setIva($iva)
  235.     {
  236.         $this->iva $iva;
  237.         return $this;
  238.     }
  239.     /**
  240.      * Get iva
  241.      *
  242.      * @return string
  243.      */
  244.     public function getIva()
  245.     {
  246.         return $this->iva;
  247.     }
  248.     /**
  249.      * Set createdAt
  250.      *
  251.      * @param \DateTime $createdAt
  252.      *
  253.      * @return ReservationProformaDeposit
  254.      */
  255.     public function setCreatedAt($createdAt)
  256.     {
  257.         $this->createdAt $createdAt;
  258.         return $this;
  259.     }
  260.     /**
  261.      * Get createdAt
  262.      *
  263.      * @return \DateTime
  264.      */
  265.     public function getCreatedAt()
  266.     {
  267.         return $this->createdAt;
  268.     }
  269.     /**
  270.      * Set createdId
  271.      *
  272.      * @param integer $createdId
  273.      *
  274.      * @return ReservationProformaDeposit
  275.      */
  276.     public function setCreatedId($createdId)
  277.     {
  278.         $this->createdId $createdId;
  279.         return $this;
  280.     }
  281.     /**
  282.      * Get createdId
  283.      *
  284.      * @return integer
  285.      */
  286.     public function getCreatedId()
  287.     {
  288.         return $this->createdId;
  289.     }
  290.     /**
  291.      * Set updatedAt
  292.      *
  293.      * @param \DateTime $updatedAt
  294.      *
  295.      * @return ReservationProformaDeposit
  296.      */
  297.     public function setUpdatedAt($updatedAt)
  298.     {
  299.         $this->updatedAt $updatedAt;
  300.         return $this;
  301.     }
  302.     /**
  303.      * Get updatedAt
  304.      *
  305.      * @return \DateTime
  306.      */
  307.     public function getUpdatedAt()
  308.     {
  309.         return $this->updatedAt;
  310.     }
  311.     /**
  312.      * Set updatedId
  313.      *
  314.      * @param integer $updatedId
  315.      *
  316.      * @return ReservationProformaDeposit
  317.      */
  318.     public function setUpdatedId($updatedId)
  319.     {
  320.         $this->updatedId $updatedId;
  321.         return $this;
  322.     }
  323.     /**
  324.      * Get updatedId
  325.      *
  326.      * @return integer
  327.      */
  328.     public function getUpdatedId()
  329.     {
  330.         return $this->updatedId;
  331.     }
  332.     /**
  333.      * Set total
  334.      *
  335.      * @param string $total
  336.      *
  337.      * @return ReservationProformaDeposit
  338.      */
  339.     public function setTotal($total)
  340.     {
  341.         $this->total $total;
  342.         return $this;
  343.     }
  344.     /**
  345.      * Get total
  346.      *
  347.      * @return string
  348.      */
  349.     public function getTotal()
  350.     {
  351.         return $this->total;
  352.     }
  353. }