<?php
namespace App\Entity\System;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*
* @ORM\Table(name="ps_product_lang_cs",
* indexes={
*
* @ORM\Index(name="indexed", columns={"indexed"}),
* @ORM\Index(name="translations", columns={"translations"}),
* }
* )
*/
class ProductLangCs extends ProductLangBase
{
/**
* @var Product
*
* @ORM\OneToOne(targetEntity="App\Entity\System\Product", inversedBy="productLangCs")
*
* @ORM\JoinColumn(name="id_product", referencedColumnName="id_product")
*/
private $product;
}