<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;/** * SupplierIdeaServicesControl * * @ORM\Table(name="supplier_idea_services_control") * @ORM\Entity(repositoryClass="App\Repository\SupplierIdeaServicesControlRepository") */class SupplierIdeaServicesControl{ /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var int * * @ORM\Column(name="idea_id", type="integer", nullable=true) */ private $ideaId; /** * @var int * * @ORM\Column(name="activity_id", type="integer", nullable=true) */ private $activityId; /** * @var int * * @ORM\Column(name="supplier_id", type="integer", nullable=true) */ private $supplierId; /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set ideaId * * @param integer $ideaId * * @return SupplierIdeaServicesControl */ public function setIdeaId($ideaId) { $this->ideaId = $ideaId; return $this; } /** * Get ideaId * * @return int */ public function getIdeaId() { return $this->ideaId; } /** * Set supplierId * * @param integer $supplierId * * @return SupplierIdeaServicesControl */ public function setSupplierId($supplierId) { $this->supplierId = $supplierId; return $this; } /** * Get supplierId * * @return int */ public function getSupplierId() { return $this->supplierId; } /** * Set activityId * * @param integer $activityId * * @return SupplierIdeaServicesControl */ public function setActivityId($activityId) { $this->activityId = $activityId; return $this; } /** * Get activityId * * @return integer */ public function getActivityId() { return $this->activityId; }}