app/Plugin/ProductReview42/Entity/ProductReviewStatus.php line 25

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 Plugin\ProductReview42\Entity;
  13. use Doctrine\ORM\Mapping as ORM;
  14. use Eccube\Entity\Master\AbstractMasterEntity;
  15. /**
  16.  * ProductReviewStatus
  17.  *
  18.  * @ORM\Table(name="plg_product_review_status")
  19.  * @ORM\Entity(repositoryClass="Plugin\ProductReview42\Repository\ProductReviewStatusRepository")
  20.  */
  21. class ProductReviewStatus extends AbstractMasterEntity
  22. {
  23.     /**
  24.      * 表示
  25.      */
  26.     const SHOW 1;
  27.     /**
  28.      * 非表示
  29.      */
  30.     const HIDE 2;
  31. }