截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WithdrawEnum.php 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace app\common\enum;
  3. class WithdrawEnum
  4. {
  5. //提现类型
  6. const TYPE_BALANCE = 1; // 提现到钱包余额
  7. const TYPE_WECHAT_CHANGE = 2; // 提现到微信零钱
  8. const TYPE_WECHAT_CODE = 3; // 提现到微信收款码
  9. const TYPE_ALI_CODE = 4; // 提现到支付宝收款码
  10. const TYPE_BANK = 5; // 提现到银行卡
  11. //提现状态
  12. const STATUS_WAIT = 1; // 待提现
  13. const STATUS_ING = 2; // 提现中
  14. const STATUS_SUCCESS = 3; // 提现成功
  15. const STATUS_FAIL = 4; //提现失败
  16. //提现状态
  17. public static function getStatusDesc($status = true)
  18. {
  19. $desc = [
  20. self::STATUS_WAIT => '待提现',
  21. self::STATUS_ING => '提现中',
  22. self::STATUS_SUCCESS => '提现成功',
  23. self::STATUS_FAIL => '提现失败'
  24. ];
  25. if ($status === true) {
  26. return $desc;
  27. }
  28. return $desc[$status] ?? '';
  29. }
  30. //提现类型
  31. public static function getTypeDesc($status = true)
  32. {
  33. $desc = [
  34. self::TYPE_BALANCE => '钱包余额',
  35. self::TYPE_WECHAT_CHANGE => '微信零钱',
  36. self::TYPE_BANK => '银行卡',
  37. self::TYPE_WECHAT_CODE => '微信收款码',
  38. self::TYPE_ALI_CODE => '支付宝收款码',
  39. ];
  40. if ($status === true) {
  41. return $desc;
  42. }
  43. return $desc[$status] ?? '';
  44. }
  45. }