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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\AvexpressBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * AveBenefitsSupplier
  6.  *
  7.  * @ORM\Table(name="ave_benefits_supplier")
  8.  * @ORM\Entity(repositoryClass="App\MDS\AvexpressBundle\Repository\AveBenefitsSupplierRepository")
  9.  */
  10. class AveBenefitsSupplier
  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 int
  29.      *
  30.      * @ORM\Column(name="doc_id", type="integer")
  31.      * Id del documento (la factura o factura rectificativa)
  32.      */
  33.     private $docId;
  34.     /**
  35.      * @var string
  36.      *
  37.      * @ORM\Column(name="doc_type", type="string", length=255)
  38.      * Tipo de documento (factura o factura rectificativa)
  39.      */
  40.     private $docType;
  41.     /**
  42.      * @var int
  43.      *
  44.      * @ORM\Column(name="supplier_id", type="integer")
  45.      * Id del proveedor
  46.      */
  47.     private $supplierId;
  48.     /**
  49.      * @var string
  50.      *
  51.      * @ORM\Column(name="supplier_name", type="string", length=255)
  52.      * Nombre del proveedor
  53.      */
  54.     private $supplierName;
  55.     /**
  56.      * @var string
  57.      *
  58.      * @ORM\Column(name="description", type="string", length=255)
  59.      * Descripción
  60.      */
  61.     private $description;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="benefit_supplier", type="string", length=255)
  66.      * Beneficio en euros del proveedor
  67.      */
  68.     private $benefitSupplier;
  69.     /**
  70.      * Get id
  71.      *
  72.      * @return int
  73.      */
  74.     public function getId()
  75.     {
  76.         return $this->id;
  77.     }
  78.     /**
  79.      * Set fileId
  80.      *
  81.      * @param integer $fileId
  82.      *
  83.      * @return AveBenefitsSupplier
  84.      */
  85.     public function setFileId($fileId)
  86.     {
  87.         $this->fileId $fileId;
  88.         return $this;
  89.     }
  90.     /**
  91.      * Get fileId
  92.      *
  93.      * @return integer
  94.      */
  95.     public function getFileId()
  96.     {
  97.         return $this->fileId;
  98.     }
  99.     /**
  100.      * Set docId
  101.      *
  102.      * @param integer $docId
  103.      *
  104.      * @return AveBenefitsSupplier
  105.      */
  106.     public function setDocId($docId)
  107.     {
  108.         $this->docId $docId;
  109.         return $this;
  110.     }
  111.     /**
  112.      * Get docId
  113.      *
  114.      * @return integer
  115.      */
  116.     public function getDocId()
  117.     {
  118.         return $this->docId;
  119.     }
  120.     /**
  121.      * Set docType
  122.      *
  123.      * @param string $docType
  124.      *
  125.      * @return AveBenefitsSupplier
  126.      */
  127.     public function setDocType($docType)
  128.     {
  129.         $this->docType $docType;
  130.         return $this;
  131.     }
  132.     /**
  133.      * Get docType
  134.      *
  135.      * @return string
  136.      */
  137.     public function getDocType()
  138.     {
  139.         return $this->docType;
  140.     }
  141.     /**
  142.      * Set supplierId
  143.      *
  144.      * @param integer $supplierId
  145.      *
  146.      * @return AveBenefitsSupplier
  147.      */
  148.     public function setSupplierId($supplierId)
  149.     {
  150.         $this->supplierId $supplierId;
  151.         return $this;
  152.     }
  153.     /**
  154.      * Get supplierId
  155.      *
  156.      * @return integer
  157.      */
  158.     public function getSupplierId()
  159.     {
  160.         return $this->supplierId;
  161.     }
  162.     /**
  163.      * Set supplierName
  164.      *
  165.      * @param string $supplierName
  166.      *
  167.      * @return AveBenefitsSupplier
  168.      */
  169.     public function setSupplierName($supplierName)
  170.     {
  171.         $this->supplierName $supplierName;
  172.         return $this;
  173.     }
  174.     /**
  175.      * Get supplierName
  176.      *
  177.      * @return string
  178.      */
  179.     public function getSupplierName()
  180.     {
  181.         return $this->supplierName;
  182.     }
  183.     /**
  184.      * Set description
  185.      *
  186.      * @param string $description
  187.      *
  188.      * @return AveBenefitsSupplier
  189.      */
  190.     public function setDescription($description)
  191.     {
  192.         $this->description $description;
  193.         return $this;
  194.     }
  195.     /**
  196.      * Get description
  197.      *
  198.      * @return string
  199.      */
  200.     public function getDescription()
  201.     {
  202.         return $this->description;
  203.     }
  204.     /**
  205.      * Set benefitSupplier
  206.      *
  207.      * @param string $benefitSupplier
  208.      *
  209.      * @return AveBenefitsSupplier
  210.      */
  211.     public function setBenefitSupplier($benefitSupplier)
  212.     {
  213.         $this->benefitSupplier $benefitSupplier;
  214.         return $this;
  215.     }
  216.     /**
  217.      * Get benefitSupplier
  218.      *
  219.      * @return string
  220.      */
  221.     public function getBenefitSupplier()
  222.     {
  223.         return $this->benefitSupplier;
  224.     }
  225. }