app/Plugin/payjp4/Entity/PaymentStatus.php line 26

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of payjp4
  4.  *
  5.  * Copyright(c) Akira Kurozumi <info@a-zumi.net>
  6.  *
  7.  *  https://a-zumi.net
  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\payjp4\Entity;
  13. use Doctrine\ORM\Mapping as ORM;
  14. use Eccube\Entity\Master\AbstractMasterEntity;
  15. /**
  16.  * Class PaymentStatus
  17.  * @package Plugin\payjp4\Entity
  18.  *
  19.  * @ORM\Table(name="plg_payjp_payment_status")
  20.  * @ORM\Entity(repositoryClass="Plugin\payjp4\Repository\PaymentStatusRepository")
  21.  */
  22. class PaymentStatus extends AbstractMasterEntity
  23. {
  24.     /**
  25.      * 未決済
  26.      */
  27.     const OUTSTANDING 1;
  28.     /**
  29.      * 有効性チェック済み
  30.      */
  31.     const ENABLED 2;
  32.     /**
  33.      * 仮売上
  34.      */
  35.     const PROVISIONAL_SALES 3;
  36.     /**
  37.      * 実売上
  38.      */
  39.     const ACTUAL_SALES 4;
  40.     /**
  41.      * キャンセル
  42.      */
  43.     const CANCEL 5;
  44. }