18 lines
291 B
PHP
18 lines
291 B
PHP
|
<?php
|
||
|
|
||
|
namespace AppBundle\Entity;
|
||
|
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
|
||
|
/**
|
||
|
* @ORM\Entity(repositoryClass="AppBundle\Repository\ProductRepository")
|
||
|
*/
|
||
|
class ProductSold extends Product {
|
||
|
|
||
|
/**
|
||
|
* @ORM\OneToMany(targetEntity="SellRecord", mappedBy="products")
|
||
|
*/
|
||
|
private $sellRecords;
|
||
|
|
||
|
}
|