src/Entity/SupplierServicesControl.php line 13

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