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

37 lines
533 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. <?php
  2. namespace App\Traits;
  3. trait DemandTraits
  4. {
  5. public static $col = [
  6. 'App\Models\Agent',
  7. 'App\Models\Supplier',
  8. 'App\Models\Guide',
  9. ];
  10. public static $polymorphic = [
  11. 'App\Models\Agent' => '代理商',
  12. 'App\Models\Supplier' => '供应商',
  13. 'App\Models\Guide' => '地接',
  14. ];
  15. public static $stateKey = [
  16. 1,
  17. 2,
  18. 3,
  19. ];
  20. public static $state = [
  21. 1 => '竞标中' ,
  22. 2 => '已竞标' ,
  23. 3 => '流拍'
  24. ];
  25. public static $biddingState = [
  26. '竞标中' ,
  27. '已中标' ,
  28. '未中标'
  29. ];
  30. }