| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace common\enums;
- class WithdrawEnum
- {
- const MIN_WITHDRAW_AMOUNT = 'min_withdraw_amount'; // 最小提现额度
- const DAILY_MAX_WITHDRAW = 'daily_max_withdraw'; // 每日提现上限
- const WITHDRAW_MULTIPLE = 'withdraw_multiple'; // 提现倍数
- const DEDUCT_EQUAL_POINTS = 'deduct_equal_points'; // 扣除等额积分
- const DEDUCT_FROZEN_REDPACKET = 'deduct_frozen_redpacket'; // 扣除等额冻结红包
- const WITHDRAW_RESTRICTION = 'withdraw_restriction'; // 提现限制
- const CONVERT_TO_POINTS_RATIO = 'convert_to_points_ratio'; // 转积分
- const LIMIT_STRATEGY = 'limit_strategy'; // 限额设置
- const BALANCE_WITHDRAW_TOTAL_WEIGHT_LIMIT_OPTION = [
- [
- 'label' => '最小提现额度',
- 'value' => self::MIN_WITHDRAW_AMOUNT,
- ],
- [
- 'label' => '每日提现上限',
- 'value' => self::DAILY_MAX_WITHDRAW,
- ],
- [
- 'label' => '提现倍数',
- 'value' => self::WITHDRAW_MULTIPLE,
- ],
- [
- 'label' => '扣除等额积分',
- 'value' => self::DEDUCT_EQUAL_POINTS,
- ],
- [
- 'label' => '扣除等额冻结红包',
- 'value' => self::DEDUCT_FROZEN_REDPACKET,
- ],
- [
- 'label' => '提现限制',
- 'value' => self::WITHDRAW_RESTRICTION,
- ],
- [
- 'label' => '转积分',
- 'value' => self::CONVERT_TO_POINTS_RATIO,
- ],
- [
- 'label' => '限额设置',
- 'value' => self::LIMIT_STRATEGY,
- ],
- ];
- }
|