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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\AvexpressBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * AveDocProformaItems
  6.  *
  7.  * @ORM\Table(name="ave_doc_proforma_items")
  8.  * @ORM\Entity(repositoryClass="App\MDS\AvexpressBundle\Repository\AveDocProformaItemsRepository")
  9.  */
  10. class AveDocProformaItems
  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="controlId", type="integer")
  24.      */
  25.     private $controlId;
  26.     // Product, Service, Payment
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="type", type="string", length=255)
  31.      */
  32.     private $type;
  33.     /**
  34.      * @var int
  35.      *
  36.      * @ORM\Column(name="fileId", type="integer")
  37.      */
  38.     private $fileId;
  39.     /**
  40.      * @var int
  41.      *
  42.      * @ORM\Column(name="proformaId", type="integer", nullable=true)
  43.      */
  44.     private $proformaId;
  45.     /**
  46.      * Get id
  47.      *
  48.      * @return int
  49.      */
  50.     public function getId()
  51.     {
  52.         return $this->id;
  53.     }
  54.     /**
  55.      * Set controlId
  56.      *
  57.      * @param integer $controlId
  58.      *
  59.      * @return AveDocProformaItems
  60.      */
  61.     public function setControlId($controlId)
  62.     {
  63.         $this->controlId $controlId;
  64.         return $this;
  65.     }
  66.     /**
  67.      * Get controlId
  68.      *
  69.      * @return integer
  70.      */
  71.     public function getControlId()
  72.     {
  73.         return $this->controlId;
  74.     }
  75.     /**
  76.      * Set type
  77.      *
  78.      * @param string $type
  79.      *
  80.      * @return AveDocProformaItems
  81.      */
  82.     public function setType($type)
  83.     {
  84.         $this->type $type;
  85.         return $this;
  86.     }
  87.     /**
  88.      * Get type
  89.      *
  90.      * @return string
  91.      */
  92.     public function getType()
  93.     {
  94.         return $this->type;
  95.     }
  96.     /**
  97.      * Set fileId
  98.      *
  99.      * @param integer $fileId
  100.      *
  101.      * @return AveDocProformaItems
  102.      */
  103.     public function setFileId($fileId)
  104.     {
  105.         $this->fileId $fileId;
  106.         return $this;
  107.     }
  108.     /**
  109.      * Get fileId
  110.      *
  111.      * @return integer
  112.      */
  113.     public function getFileId()
  114.     {
  115.         return $this->fileId;
  116.     }
  117.     /**
  118.      * Set proformaId
  119.      *
  120.      * @param integer $proformaId
  121.      *
  122.      * @return AveDocProformaItems
  123.      */
  124.     public function setProformaId($proformaId)
  125.     {
  126.         $this->proformaId $proformaId;
  127.         return $this;
  128.     }
  129.     /**
  130.      * Get proformaId
  131.      *
  132.      * @return integer
  133.      */
  134.     public function getProformaId()
  135.     {
  136.         return $this->proformaId;
  137.     }
  138. }