src/MDS/AvexpressBundle/Entity/AveDocInvoiceRec.php line 13

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