123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- // +----------------------------------------------------------------------
- // | Niucloud-admin 企业快速开发的saas管理平台
- // +----------------------------------------------------------------------
- // | 官方网址:https://www.niucloud.com
- // +----------------------------------------------------------------------
- // | niucloud团队 版权所有 开源版本可自由商用
- // +----------------------------------------------------------------------
- // | Author: Niucloud Team
- // +----------------------------------------------------------------------
- namespace app\dict\shop;
- /**
- * 店铺提现方式
- * Class ShopTransferDict
- * @package app\dict\shop
- */
- class ShopTransferDict
- {
- public const BANK = 1;//银行卡
- public const ALIPAY = 2;//支付宝
- /**
- * 提现状态
- * @return array
- */
- public static function getType()
- {
- return [
- self::BANK => get_lang('dict_transfer.type_bank'),//银行卡
- self::ALIPAY => get_lang('dict_transfer.type_ali'),//支付宝
- ];
- }
- }
|