<?phpnamespace Customize\Entity\Master;use Doctrine\ORM\Mapping as ORM;/** * Option * * @ORM\Table(name="mtb_product_order") * @ORM\InheritanceType("SINGLE_TABLE") * @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255) * @ORM\HasLifecycleCallbacks() * @ORM\Entity(repositoryClass="Customize\Repository\Master\ProductOrderRepository") * @ORM\Cache(usage="NONSTRICT_READ_WRITE") */class ProductOrder extends \Eccube\Entity\Master\AbstractMasterEntity{}