app/Customize/Entity/Master/Relationship.php line 28

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Customize\Entity\Master;
  13. use Doctrine\ORM\Mapping as ORM;
  14. /**
  15.  * 続柄
  16.  *
  17.  * @ORM\Table(name="mtb_relationship")
  18.  * @ORM\InheritanceType("SINGLE_TABLE")
  19.  * @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255)
  20.  * @ORM\HasLifecycleCallbacks()
  21.  * @ORM\Entity(repositoryClass="Customize\Repository\Master\RelationshipRepository")
  22.  * @ORM\Cache(usage="NONSTRICT_READ_WRITE")
  23.  */
  24. class Relationship extends \Eccube\Entity\Master\AbstractMasterEntity
  25. {
  26. }