海南旅游SAAS
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.

38 lines
612 B

4 years ago
  1. <?php
  2. namespace App\Traits;
  3. trait WithdrawalTraits
  4. {
  5. public static $userType = [
  6. 'App\Models\WithdrawalAlipay',
  7. 'App\Models\WithdrawalBank',
  8. ];
  9. public static $userTypeText = [
  10. 'App\Models\WithdrawalAlipay' => '支付宝',
  11. 'App\Models\WithdrawalBank' => '银行卡',
  12. ];
  13. //状态 1·待审核 2 已拒绝 3 已通过 4 已打款
  14. public static $state= [
  15. 1,
  16. 2,
  17. 3,
  18. 4,
  19. ];
  20. public static $stateText = [
  21. 1 => '待审核',
  22. 2 => '已拒绝',
  23. 3 => '已通过',
  24. 4 => '已打款',
  25. ];
  26. public static $stateTextSelect = [
  27. 1 => '待审核',
  28. 3 => '已通过',
  29. 4 => '已打款',
  30. ];
  31. }