WithdrawEnum.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace common\enums;
  3. class WithdrawEnum
  4. {
  5. const MIN_WITHDRAW_AMOUNT = 'min_withdraw_amount'; // 最小提现额度
  6. const DAILY_MAX_WITHDRAW = 'daily_max_withdraw'; // 每日提现上限
  7. const WITHDRAW_MULTIPLE = 'withdraw_multiple'; // 提现倍数
  8. const DEDUCT_EQUAL_POINTS = 'deduct_equal_points'; // 扣除等额积分
  9. const DEDUCT_FROZEN_REDPACKET = 'deduct_frozen_redpacket'; // 扣除等额冻结红包
  10. const WITHDRAW_RESTRICTION = 'withdraw_restriction'; // 提现限制
  11. const CONVERT_TO_POINTS_RATIO = 'convert_to_points_ratio'; // 转积分
  12. const LIMIT_STRATEGY = 'limit_strategy'; // 限额设置
  13. const BALANCE_WITHDRAW_TOTAL_WEIGHT_LIMIT_OPTION = [
  14. [
  15. 'label' => '最小提现额度',
  16. 'value' => self::MIN_WITHDRAW_AMOUNT,
  17. ],
  18. [
  19. 'label' => '每日提现上限',
  20. 'value' => self::DAILY_MAX_WITHDRAW,
  21. ],
  22. [
  23. 'label' => '提现倍数',
  24. 'value' => self::WITHDRAW_MULTIPLE,
  25. ],
  26. [
  27. 'label' => '扣除等额积分',
  28. 'value' => self::DEDUCT_EQUAL_POINTS,
  29. ],
  30. [
  31. 'label' => '扣除等额冻结红包',
  32. 'value' => self::DEDUCT_FROZEN_REDPACKET,
  33. ],
  34. [
  35. 'label' => '提现限制',
  36. 'value' => self::WITHDRAW_RESTRICTION,
  37. ],
  38. [
  39. 'label' => '转积分',
  40. 'value' => self::CONVERT_TO_POINTS_RATIO,
  41. ],
  42. [
  43. 'label' => '限额设置',
  44. 'value' => self::LIMIT_STRATEGY,
  45. ],
  46. ];
  47. }