src/Eccube/Entity/Master/RoundingType.php line 29

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 Eccube\Entity\Master;
  13. use Doctrine\ORM\Mapping as ORM;
  14. if (!class_exists(RoundingType::class, false)) {
  15. /**
  16. * RoundingType
  17. *
  18. * @ORM\Table(name="mtb_rounding_type")
  19. * @ORM\InheritanceType("SINGLE_TABLE")
  20. * @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255)
  21. * @ORM\HasLifecycleCallbacks()
  22. * @ORM\Entity(repositoryClass="Eccube\Repository\Master\RoundingTypeRepository")
  23. * @ORM\Cache(usage="NONSTRICT_READ_WRITE")
  24. */
  25. class RoundingType extends \Eccube\Entity\Master\AbstractMasterEntity
  26. {
  27. /**
  28. * 四捨五入.
  29. *
  30. * @var integer
  31. */
  32. public const ROUND = 1;
  33. /**
  34. * 切り捨て.
  35. *
  36. * @var integer
  37. */
  38. public const FLOOR = 2;
  39. /**
  40. * 切り上げ.
  41. *
  42. * @var integer
  43. */
  44. public const CEIL = 3;
  45. }
  46. }