app/Plugin/CustomerSupportPro42/Entity/Master/ContactPurpose.php line 26

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of the ContactManagement Plugin
  4. *
  5. * Copyright (C) 2020 Diezon.
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Plugin\CustomerSupportPro42\Entity\Master;
  11. use Doctrine\ORM\Mapping as ORM;
  12. /**
  13. * MasterContactPurpose
  14. *
  15. * @ORM\Table(name="mtb_contact_purpose")
  16. * @ORM\InheritanceType("SINGLE_TABLE")
  17. * @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255)
  18. * @ORM\HasLifecycleCallbacks()
  19. * @ORM\Entity(repositoryClass="Plugin\CustomerSupportPro42\Repository\Master\ContactPurposeRepository")
  20. * @ORM\Cache(usage="NONSTRICT_READ_WRITE")
  21. */
  22. class ContactPurpose extends \Eccube\Entity\Master\AbstractMasterEntity
  23. {
  24. /**
  25. *
  26. * @var integer
  27. */
  28. const DEFAULT = 1;
  29. }