ShopTransferDict.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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\shop;
  12. /**
  13. * 店铺提现方式
  14. * Class ShopTransferDict
  15. * @package app\dict\shop
  16. */
  17. class ShopTransferDict
  18. {
  19. public const BANK = 1;//银行卡
  20. public const ALIPAY = 2;//支付宝
  21. /**
  22. * 提现状态
  23. * @return array
  24. */
  25. public static function getType()
  26. {
  27. return [
  28. self::BANK => get_lang('dict_transfer.type_bank'),//银行卡
  29. self::ALIPAY => get_lang('dict_transfer.type_ali'),//支付宝
  30. ];
  31. }
  32. }