<?php
namespace App\OfficeBrain\Bundle\ProductBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* ProductCategoryMapping
*
* @ORM\Table(name="product_category_mapping")
* @ORM\Entity(repositoryClass="App\OfficeBrain\Bundle\ProductBundle\Entity\ProductCategoryMappingRepository")
*/
class ProductCategoryMapping
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var \CategoryMaster
* @ORM\Column(name="category_id", type="integer", nullable=true)
*/
private $categoryId;
/**
* @var \ProductMaster
*
* @ORM\Column(name="product_id", type="integer", nullable=true)
* })
*/
private $productId;
/**
* @var integer
*
* @ORM\Column(name="country_id", type="integer", nullable=true)
*/
private $countryId;
/**
* @var int
*
* @ORM\Column(name="sort_position",type="bigint", length=11, options={"unsigned"=true})
*/
private $sortPosition;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set categoryId
*
* @param integer $categoryId
*
* @return ProductCategoryMapping
*/
public function setCategoryId($categoryId)
{
$this->categoryId = $categoryId;
return $this;
}
/**
* Get categoryId
*
* @return integer
*/
public function getCategoryId()
{
return $this->categoryId;
}
/**
* Set productId
*
* @param integer $productId
*
* @return ProductCategoryMapping
*/
public function setProductId($productId)
{
$this->productId = $productId;
return $this;
}
/**
* Get productId
*
* @return integer
*/
public function getProductId()
{
return $this->productId;
}
/**
* Set countryId
*
* @param integer $countryId
*
* @return ProductCategoryMapping
*/
public function setCountryId($countryId)
{
$this->countryId = $countryId;
return $this;
}
/**
* Get countryId
*
* @return integer
*/
public function getCountryId()
{
return $this->countryId;
}
/**
* Set sortPosition.
*
* @param int $sortPosition
*
* @return
*/
public function setSortPosition($sortPosition)
{
$this->sortPosition = $sortPosition;
return $this;
}
/**
* Get sortPosition.
*
* @return int
*/
public function getSortPosition()
{
return $this->sortPosition;
}
}