caisse-bliss/src/AppBundle/Entity/ProductSold.php

18 lines
291 B
PHP
Raw Normal View History

2018-04-05 15:05:04 +02:00
<?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;
}