<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* SupplierServicesControl
*
* @ORM\Table(name="suppliers_services_control")
* @ORM\Entity(repositoryClass="App\Repository\SupplierServicesControlRepository")
*/
class SupplierServicesControl
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var int
*
* @ORM\Column(name="supplier_id", type="integer")
*/
private $supplierId;
/**
* @var int
*
* @ORM\Column(name="services_id", type="integer")
*/
private $servicesId;
/**
* @var int
*
* @ORM\Column(name="services_cat_id", type="integer")
*/
private $servicesCat;
/**
* @var string
*
* @ORM\Column(name="services_category", type="string", length=255)
*/
private $servicesCategory;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set supplierId
*
* @param integer $supplierId
*
* @return SupplierServicesControl
*/
public function setSupplierId($supplierId)
{
$this->supplierId = $supplierId;
return $this;
}
/**
* Get supplierId
*
* @return int
*/
public function getSupplierId()
{
return $this->supplierId;
}
/**
* Set servicesId
*
* @param integer $servicesId
*
* @return SupplierServicesControl
*/
public function setServicesId($servicesId)
{
$this->servicesId = $servicesId;
return $this;
}
/**
* Get servicesId
*
* @return int
*/
public function getServicesId()
{
return $this->servicesId;
}
/**
* Set servicesCat
*
* @param integer $servicesCat
*
* @return SupplierServicesControl
*/
public function setServicesCat($servicesCat)
{
$this->servicesCat = $servicesCat;
return $this;
}
/**
* Get servicesCat
*
* @return int
*/
public function getServicesCat()
{
return $this->servicesCat;
}
/**
* Set servicesCategory
*
* @param string $servicesCategory
*
* @return SupplierServicesControl
*/
public function setServicesCategory($servicesCategory)
{
$this->servicesCategory = $servicesCategory;
return $this;
}
/**
* Get servicesCategory
*
* @return string
*/
public function getServicesCategory()
{
return $this->servicesCategory;
}
}