截流自动化的商城平台
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.

WithdrawalEnum.php 760B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\enum;
  3. class WithdrawalEnum
  4. {
  5. const APPLY_STATUS = 0; //申请中
  6. const HANDLE_STATUS = 1; //提现中
  7. const SUCCESS_STATUS = 2; //提现成功
  8. const ERROR_STATUS = 3; //提现失败
  9. /**
  10. * @Notes: 获取提现状态文案
  11. * @Author: 张无忌
  12. * @param bool $from
  13. * @return array|mixed
  14. */
  15. public static function getStatusDesc($from = true){
  16. $desc = [
  17. self::APPLY_STATUS => '待提现',
  18. self::HANDLE_STATUS => '提现中',
  19. self::SUCCESS_STATUS => '提现成功',
  20. self::ERROR_STATUS => '提现失败',
  21. ];
  22. if(true === $from){
  23. return $desc;
  24. }
  25. return $desc[$from];
  26. }
  27. }