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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\AvexpressBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * AveBenefitsInvoiceInvoiceRec
  6.  *
  7.  * @ORM\Table(name="ave_benefits_invoice_invoice_rec")
  8.  * @ORM\Entity(repositoryClass="App\MDS\AvexpressBundle\Repository\AveBenefitsInvoiceInvoiceRecRepository")
  9.  */
  10. class AveBenefitsInvoiceInvoiceRec
  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.      * Id del expediente
  25.      */
  26.     private $fileId;
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="file_name", type="string", length=255)
  31.      * Nombre del expediente
  32.      */
  33.     private $fileName;
  34.     /**
  35.      * @var int
  36.      *
  37.      * @ORM\Column(name="doc_id", type="integer")
  38.      * Id del documento (la factura o factura rectificativa)
  39.      */
  40.     private $docId;
  41.     /**
  42.      * @var int
  43.      *
  44.      * @ORM\Column(name="client_id", type="integer")
  45.      * Id del cliente
  46.      */
  47.     private $clientId;
  48.     /**
  49.      * @var string
  50.      *
  51.      * @ORM\Column(name="client_name", type="string", length=255)
  52.      * Nombre del cliente
  53.      */
  54.     private $clientName;
  55.     /**
  56.      * @var \DateTime
  57.      *
  58.      * @ORM\Column(name="dateAt", type="datetime")
  59.      * Fecha del documento
  60.      */
  61.     private $dateAt;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="doc_type", type="string", length=255)
  66.      * Tipo de documento (factura o factura rectificativa)
  67.      */
  68.     private $docType;
  69.     /**
  70.      * @var string
  71.      *
  72.      * @ORM\Column(name="benefit_euro", type="string", length=255)
  73.      * Beneficio en euros del documento
  74.      */
  75.     private $benefitEuro;
  76.     /**
  77.      * @var string
  78.      *
  79.      * @ORM\Column(name="benefit_perc", type="string", length=255)
  80.      * Porcentaje del Beneficio
  81.      */
  82.     private $benefitPerc;
  83.     /**
  84.      * @var string
  85.      *
  86.      * @ORM\Column(name="total_sale", type="string", length=255)
  87.      * Venta total del documento
  88.      */
  89.     private $totalSale;
  90.     /**
  91.      * @var string
  92.      *
  93.      * @ORM\Column(name="net_sale", type="string", length=255)
  94.      * Venta neta del documento
  95.      */
  96.     private $netSale;
  97.     /**
  98.      * Get id
  99.      *
  100.      * @return int
  101.      */
  102.     public function getId()
  103.     {
  104.         return $this->id;
  105.     }
  106.     /**
  107.      * Set fileId
  108.      *
  109.      * @param integer $fileId
  110.      *
  111.      * @return AveBenefitsInvoiceInvoiceRec
  112.      */
  113.     public function setFileId($fileId)
  114.     {
  115.         $this->fileId $fileId;
  116.         return $this;
  117.     }
  118.     /**
  119.      * Get fileId
  120.      *
  121.      * @return integer
  122.      */
  123.     public function getFileId()
  124.     {
  125.         return $this->fileId;
  126.     }
  127.     /**
  128.      * Set fileName
  129.      *
  130.      * @param string $fileName
  131.      *
  132.      * @return AveBenefitsInvoiceInvoiceRec
  133.      */
  134.     public function setFileName($fileName)
  135.     {
  136.         $this->fileName $fileName;
  137.         return $this;
  138.     }
  139.     /**
  140.      * Get fileName
  141.      *
  142.      * @return string
  143.      */
  144.     public function getFileName()
  145.     {
  146.         return $this->fileName;
  147.     }
  148.     /**
  149.      * Set docId
  150.      *
  151.      * @param integer $docId
  152.      *
  153.      * @return AveBenefitsInvoiceInvoiceRec
  154.      */
  155.     public function setDocId($docId)
  156.     {
  157.         $this->docId $docId;
  158.         return $this;
  159.     }
  160.     /**
  161.      * Get docId
  162.      *
  163.      * @return integer
  164.      */
  165.     public function getDocId()
  166.     {
  167.         return $this->docId;
  168.     }
  169.     /**
  170.      * Set clientId
  171.      *
  172.      * @param integer $clientId
  173.      *
  174.      * @return AveBenefitsInvoiceInvoiceRec
  175.      */
  176.     public function setClientId($clientId)
  177.     {
  178.         $this->clientId $clientId;
  179.         return $this;
  180.     }
  181.     /**
  182.      * Get clientId
  183.      *
  184.      * @return integer
  185.      */
  186.     public function getClientId()
  187.     {
  188.         return $this->clientId;
  189.     }
  190.     /**
  191.      * Set clientName
  192.      *
  193.      * @param string $clientName
  194.      *
  195.      * @return AveBenefitsInvoiceInvoiceRec
  196.      */
  197.     public function setClientName($clientName)
  198.     {
  199.         $this->clientName $clientName;
  200.         return $this;
  201.     }
  202.     /**
  203.      * Get clientName
  204.      *
  205.      * @return string
  206.      */
  207.     public function getClientName()
  208.     {
  209.         return $this->clientName;
  210.     }
  211.     /**
  212.      * Set dateAt
  213.      *
  214.      * @param \DateTime $dateAt
  215.      *
  216.      * @return AveBenefitsInvoiceInvoiceRec
  217.      */
  218.     public function setDateAt($dateAt)
  219.     {
  220.         $this->dateAt $dateAt;
  221.         return $this;
  222.     }
  223.     /**
  224.      * Get dateAt
  225.      *
  226.      * @return \DateTime
  227.      */
  228.     public function getDateAt()
  229.     {
  230.         return $this->dateAt;
  231.     }
  232.     /**
  233.      * Set docType
  234.      *
  235.      * @param string $docType
  236.      *
  237.      * @return AveBenefitsInvoiceInvoiceRec
  238.      */
  239.     public function setDocType($docType)
  240.     {
  241.         $this->docType $docType;
  242.         return $this;
  243.     }
  244.     /**
  245.      * Get docType
  246.      *
  247.      * @return string
  248.      */
  249.     public function getDocType()
  250.     {
  251.         return $this->docType;
  252.     }
  253.     /**
  254.      * Set benefitEuro
  255.      *
  256.      * @param string $benefitEuro
  257.      *
  258.      * @return AveBenefitsInvoiceInvoiceRec
  259.      */
  260.     public function setBenefitEuro($benefitEuro)
  261.     {
  262.         $this->benefitEuro $benefitEuro;
  263.         return $this;
  264.     }
  265.     /**
  266.      * Get benefitEuro
  267.      *
  268.      * @return string
  269.      */
  270.     public function getBenefitEuro()
  271.     {
  272.         return $this->benefitEuro;
  273.     }
  274.     /**
  275.      * Set benefitPerc
  276.      *
  277.      * @param string $benefitPerc
  278.      *
  279.      * @return AveBenefitsInvoiceInvoiceRec
  280.      */
  281.     public function setBenefitPerc($benefitPerc)
  282.     {
  283.         $this->benefitPerc $benefitPerc;
  284.         return $this;
  285.     }
  286.     /**
  287.      * Get benefitPerc
  288.      *
  289.      * @return string
  290.      */
  291.     public function getBenefitPerc()
  292.     {
  293.         return $this->benefitPerc;
  294.     }
  295.     /**
  296.      * Set totalSale
  297.      *
  298.      * @param string $totalSale
  299.      *
  300.      * @return AveBenefitsInvoiceInvoiceRec
  301.      */
  302.     public function setTotalSale($totalSale)
  303.     {
  304.         $this->totalSale $totalSale;
  305.         return $this;
  306.     }
  307.     /**
  308.      * Get totalSale
  309.      *
  310.      * @return string
  311.      */
  312.     public function getTotalSale()
  313.     {
  314.         return $this->totalSale;
  315.     }
  316.     /**
  317.      * Set netSale
  318.      *
  319.      * @param string $netSale
  320.      *
  321.      * @return AveBenefitsInvoiceInvoiceRec
  322.      */
  323.     public function setNetSale($netSale)
  324.     {
  325.         $this->netSale $netSale;
  326.         return $this;
  327.     }
  328.     /**
  329.      * Get netSale
  330.      *
  331.      * @return string
  332.      */
  333.     public function getNetSale()
  334.     {
  335.         return $this->netSale;
  336.     }
  337. }