VerifyDict.php 963 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Niucloud-admin 企业快速开发的saas管理平台
  4. // +----------------------------------------------------------------------
  5. // | 官方网址:https://www.niucloud.com
  6. // +----------------------------------------------------------------------
  7. // | niucloud团队 版权所有 开源版本可自由商用
  8. // +----------------------------------------------------------------------
  9. // | Author: Niucloud Team
  10. // +----------------------------------------------------------------------
  11. namespace app\dict\verify;
  12. /**
  13. * 核销类型
  14. */
  15. class VerifyDict
  16. {
  17. /**
  18. * 获取核销类型
  19. * @return array
  20. */
  21. public static function getType()
  22. {
  23. $verify_type = event("VerifyType");
  24. $type_list = [];
  25. foreach ($verify_type as $type) {
  26. $type_list = array_merge($type_list, $type);
  27. }
  28. return $type_list;
  29. }
  30. }